tools/drawMapTest/main.cpp
author alfadur
Mon, 19 Nov 2018 04:21:44 +0300
changeset 14239 27ae2d3d04b6
parent 4425 2314bb0c433d
permissions -rw-r--r--
seems like it's either this or swap indexing order everywhere

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

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