tools/drawMapTest/main.cpp
author sheepluva
Mon, 13 Jul 2015 11:01:01 +0200 (2015-07-13)
changeset 11006 cb06b7985261
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't keep around those right-side fort files which are just mirror images of left-side forts. generate them at run-time instead. note: inlining changes and deleting files - so consider clean build/install
#include <QtGui/QApplication>
#include "mainwindow.h"

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