tools/drawMapTest/main.cpp
author sheepluva
Sun, 15 Jun 2014 04:46:34 +0200
changeset 10308 7350be35b335
parent 4425 2314bb0c433d
permissions -rw-r--r--
whoops. an "end" moved there

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

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