tools/drawMapTest/main.cpp
author unc0rr
Thu, 21 May 2015 00:19:06 +0300
branchqmlfrontend
changeset 10951 89a7f617e091
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Move protocol handling events to main thread through qt's main loop - Reorganize code a bit

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

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