tools/drawMapTest/main.cpp
author sheepluva
Sun, 02 Oct 2016 12:00:39 +0200
changeset 11866 8ba6b227f1dc
parent 4425 2314bb0c433d
permissions -rw-r--r--
travis: also add libghc-regex-tdfa-dev to dependencies

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

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