2017-09-28 12:52:06 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
#include <QDebug>
|
2016-03-18 14:21:45 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2017-09-28 12:52:06 +00:00
|
|
|
|
2017-09-28 21:28:08 +00:00
|
|
|
Q_INIT_RESOURCE(resources);
|
|
|
|
|
2017-09-28 12:52:06 +00:00
|
|
|
MainWindow window;
|
|
|
|
window.show();
|
2016-03-18 14:21:45 +00:00
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|