tools/drawMapTest/main.cpp
author hasufell
Tue, 04 Jun 2013 15:41:40 +0200
branch0.9.19
changeset 9116 1b7dcf24037b
parent 4425 2314bb0c433d
permissions -rw-r--r--
two german sentences

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

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