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[])
|
|
|
|
{
|
2022-02-17 11:06:23 +00:00
|
|
|
QApplication a(argc, argv);
|
2017-09-28 21:28:08 +00:00
|
|
|
|
2017-09-28 12:52:06 +00:00
|
|
|
MainWindow window;
|
|
|
|
window.show();
|
2016-03-18 14:21:45 +00:00
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|