tools/drawMapTest/main.cpp
author sheepluva
Sat, 06 Jan 2018 03:17:12 +0100
branchqmlfrontend
changeset 12882 bf58f2403953
parent 4425 2314bb0c433d
permissions -rw-r--r--
whoops, I ruined the path of the unC0Rr

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

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