tools/drawMapTest/main.cpp
author sheepluva
Sun, 02 Oct 2016 12:42:16 +0200
changeset 11867 fbe9bb9602eb
parent 4425 2314bb0c433d
permissions -rw-r--r--
also update ghc info in INSTALL file

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

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