tools/drawMapTest/main.cpp
author sheepluva
Thu, 10 Sep 2015 04:59:02 +0200
changeset 11077 1fb80cd8ba7b
parent 4425 2314bb0c433d
permissions -rw-r--r--
small code cleanup

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

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