##// END OF EJS Templates
Added data getter for XY series; example for customizing the looks
Added data getter for XY series; example for customizing the looks

File last commit:

r486:7ab45bf9f776
r491:4417e87c4247
Show More
main.cpp
11 lines | 178 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}