tools/drawMapTest/main.cpp
author sheepluva
Sun, 15 May 2016 23:11:14 +0200
changeset 11823 0fba6cb098a1
parent 4425 2314bb0c433d
permissions -rw-r--r--
drop SysUtils inclusion from 5 files where it is not needed anymore

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

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