tools/drawMapTest/main.cpp
author sheepluva
Sat, 16 Jan 2016 19:50:38 +0100
changeset 11517 b3ee79e8e3b9
parent 4425 2314bb0c433d
permissions -rw-r--r--
find hg revision even if github author name is not the same as hg author (kodabb vs koda)

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

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