tools/drawMapTest/main.cpp
author Randy
Mon, 15 Apr 2013 18:27:35 +0200
branch0.9.19
changeset 8888 b804f1d129e4
parent 4425 2314bb0c433d
permissions -rw-r--r--
add fruit theme svg sources; btw... in last commit I meant to type "splash", not "slash", sorry --sheepluva

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

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