aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: 9b39d7c6c58c27696744c9c72d0e88d1c63c2f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "mainwindow.h"

#include <QApplication>
#include <QMetaObject>


int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    a.setOrganizationName("CoderOnline");
    a.setQuitOnLastWindowClosed(false);
    MainWindow w;



    return a.exec();
}


..