tools/drawMapTest/main.cpp
author unc0rr
Mon, 11 May 2015 00:27:16 +0300
branchqmlfrontend
changeset 10927 336f5ad638be
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix jumpts table, build array of handlers (wip)

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

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