tools/drawMapTest/main.cpp
author koda
Thu, 22 Sep 2011 01:28:19 +0200
changeset 5986 57738fb49f5e
parent 4425 2314bb0c433d
permissions -rw-r--r--
apparently the old way was the correct one

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

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