tools/drawMapTest/main.cpp
author sheepluva <sheepluva@users.noreply.github.com>
Thu, 01 Oct 2015 12:17:42 +0200
changeset 11326 721210d689a5
parent 4425 2314bb0c433d
permissions -rw-r--r--
Merge pull request #35 from LocutusOfBorg/fedora merge

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

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