tools/drawMapTest/main.cpp
author koda
Sat, 29 Jun 2013 00:28:47 +0200
changeset 9297 3f16f5e43814
parent 4425 2314bb0c433d
permissions -rw-r--r--
this is internal now

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

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