blob: dc11744722b63ecf294e8365d7a9a9234881e2a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===========================================
// Copyright (c) 2017, q5sys (JT)
// Available under the MIT license
// See the LICENSE file for full details
//===========================================
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
|