tools/drawMapTest/main.cpp
author sheepluva
Sun, 15 May 2016 11:37:07 +0200
changeset 11820 fe339879cf75
parent 4425 2314bb0c433d
permissions -rw-r--r--
merge Wuzzy's frontend tweaks

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

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