2017-08-15 20:55:25 +03:00

13 lines
235 B
C++

#include <QApplication>
#include <QTimer>
#include <examplegui.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ExampleGui *example = new ExampleGui();
example->show();
return a.exec();
}