tools/drawMapTest/main.cpp
author nemo
Wed, 02 Sep 2015 11:55:37 -0400
changeset 11067 c632b47b8ff0
parent 4425 2314bb0c433d
permissions -rw-r--r--
Trying to get these scripts to behave properly, still WIP though.

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

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