tools/drawMapTest/main.cpp
author koda
Wed, 19 Dec 2012 18:23:29 +0100
changeset 8313 31d6613989a6
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove FPFLAGS and GHFLAGS from cache every time

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

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