tools/drawMapTest/main.cpp
author koda
Wed, 02 May 2012 14:35:54 +0100
changeset 6997 2356bf174df8
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove old ukeys hooks from pascalexport (definitely breaking the ios port, will have to work on that, but for now sheepluva and xeli will be happy *hopefully*)

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

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