tools/drawMapTest/main.cpp
author sheepluva
Sat, 22 Oct 2011 08:51:02 +0200
changeset 6181 c739b503ae31
parent 4425 2314bb0c433d
permissions -rw-r--r--
ugh wth... cleaned FL/IL change notifications up

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

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