tools/drawMapTest/main.cpp
author Xeli
Thu, 04 Aug 2011 17:28:11 +0200
branchhedgeroid
changeset 5465 b7e009722465
parent 4425 2314bb0c433d
permissions -rw-r--r--
moved these files to a subdir

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

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