tools/drawMapTest/main.cpp
author sheepluva
Tue, 11 Nov 2014 21:55:38 +0100
changeset 10489 bde3e43d7b27
parent 4425 2314bb0c433d
permissions -rw-r--r--
check for new Qt req in cmake files

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

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