tools/drawMapTest/main.cpp
author nemo
Wed, 09 Aug 2017 12:22:05 -0400
changeset 12445 28bf941e13a0
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't spawn things on ice. it's too unpredictable what'll happen to them

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

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