tools/drawMapTest/main.cpp
author unc0rr
Sun, 01 Jan 2017 22:13:35 +0300
changeset 12126 4348997e502b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Refactor code to add more structure to it

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}