tools/drawMapTest/main.cpp
author koda
Tue, 11 Jun 2013 09:46:18 +0200
branch0.9.19
changeset 9129 d8a0a7e42b73
parent 4425 2314bb0c433d
permissions -rw-r--r--
sigh, this follows r63bf1f4f40f8

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

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