tools/drawMapTest/main.cpp
author Xeli
Sun, 09 Oct 2011 15:17:21 +0200
branchhedgeroid
changeset 6043 9bd2d6b1ba52
parent 4425 2314bb0c433d
permissions -rw-r--r--
update from rev d75329716a02, it really works now (i think)

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

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