tools/drawMapTest/main.cpp
author sheepluva
Sun, 30 Apr 2017 00:28:17 +0200
changeset 12386 e4f8bf43224d
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix build. sorry 'bout that.

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

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