tools/drawMapTest/main.cpp
author koda
Mon, 18 Mar 2013 20:10:27 +0100 (2013-03-18)
branchcmake_pascal
changeset 8761 801cf78707f2
parent 4425 2314bb0c433d
permissions -rw-r--r--
partial reodering of units so that dependency tracking is done with cmake
#include <QtGui/QApplication>
#include "mainwindow.h"

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