##// 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
Jani Honkonen
First draft of project structure
r1 #include <QtCore/QtGlobal>
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
#include <QApplication>
#else
#include <QtWidgets/QApplication>
#endif
Tero Ahola
New features like chart type to the test app
r5 #include "mainwidget.h"
Jani Honkonen
First draft of project structure
r1
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Tero Ahola
New features like chart type to the test app
r5 MainWidget w;
Jani Honkonen
First draft of project structure
r1 w.show();
Tero Ahola
New features like chart type to the test app
r5
Jani Honkonen
First draft of project structure
r1 return a.exec();
}