tools/drawMapTest/main.cpp
author = Xeli
Wed, 24 Aug 2011 12:34:37 +0200
branchhedgeroid
changeset 5655 44c2d19f79e2
parent 4425 2314bb0c433d
permissions -rw-r--r--
merg with the latest rev of 22nd (end of GSoC)

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

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