tools/drawMapTest/main.cpp
author Xeli
Fri, 21 Oct 2011 13:56:11 +0200
branchhedgeroid
changeset 6053 39d763049c0f
parent 4425 2314bb0c433d
permissions -rw-r--r--
oops, removed a line from the 'firstTime only' section

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

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