2017-10-17 20:08:05 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include "mainwindow.h"
|
2017-10-17 14:50:20 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2017-10-17 20:08:05 +00:00
|
|
|
QApplication app(argc, argv);
|
2017-10-17 14:50:20 +00:00
|
|
|
|
2017-10-17 20:08:05 +00:00
|
|
|
MainWindow mainWindow;
|
|
|
|
mainWindow.show();
|
2017-10-17 14:50:20 +00:00
|
|
|
|
2017-10-17 20:08:05 +00:00
|
|
|
return app.exec();
|
2017-10-17 14:50:20 +00:00
|
|
|
}
|