tools/drawMapTest/main.cpp
author sheepluva <sheepluva@users.noreply.github.com>
Mon, 05 Jan 2015 14:02:27 +0100
changeset 10761 fc37b9df2b03
parent 4425 2314bb0c433d
permissions -rw-r--r--
Merge pull request #24 from LocutusOfBorg/update-travis travis adjustments by LocutusOfBorg

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

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