tools/drawMapTest/main.cpp
author koda
Thu, 27 Dec 2012 17:01:02 +0100
changeset 8337 bf237f7f1d94
parent 4425 2314bb0c433d
permissions -rw-r--r--
add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good

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

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