tools/drawMapTest/main.cpp
author koda
Wed, 21 Nov 2012 18:34:45 +0100
changeset 8090 38d9cc60b14c
parent 4425 2314bb0c433d
permissions -rw-r--r--
cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process

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

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