blob: b103c4cbe3091888046448c9b3ebc438179494cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//===========================================
// qalarm source code
// Copyright (c) 2017, q5sys
// 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();
}
|