tools/drawMapTest/main.cpp
author Xeli
Thu, 20 Oct 2011 23:07:53 +0200
branchhedgeroid
changeset 6049 7bc38086d771
parent 4425 2314bb0c433d
permissions -rw-r--r--
wops missed this one: removed a 'fix' eclipse put in there

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

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