##// END OF EJS Templates
New features like chart type to the test app
New features like chart type to the test app

File last commit:

r5:99c4c9176ee1
r5:99c4c9176ee1
Show More
main.cpp
17 lines | 292 B | text/x-c | CppLexer
#include <QtCore/QtGlobal>
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
#include <QApplication>
#else
#include <QtWidgets/QApplication>
#endif
#include "mainwidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWidget w;
w.show();
return a.exec();
}