tools/drawMapTest/main.cpp
author koda
Mon, 08 Jul 2013 12:17:03 +0200
changeset 9341 4dfebad83d51
parent 4425 2314bb0c433d
permissions -rw-r--r--
just set these flags directly

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

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