tools/drawMapTest/main.cpp
author sheepluva
Thu, 02 Oct 2014 00:06:59 +0200
changeset 10419 e19a864e2fab
parent 4425 2314bb0c433d
permissions -rw-r--r--
some more splash code tweaking/fixing

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

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