tools/drawMapTest/main.cpp
author sheepluva
Tue, 12 Jan 2016 22:43:39 +0100
changeset 11508 09be932506a9
parent 4425 2314bb0c433d
permissions -rw-r--r--
pas2c still does (not like) this

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

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