tools/drawMapTest/main.cpp
author sheepluva
Wed, 18 Jun 2014 19:57:25 +0200
changeset 7380 8bf3ad5a6f13
parent 4425 2314bb0c433d
permissions -rw-r--r--
closing wosteffs ancient debug commit head. default branch has been a dual-headed monster for long enough IMO

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

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