tools/drawMapTest/main.cpp
author Xeli
Thu, 14 Jul 2011 15:42:54 +0200
branchhedgeroid
changeset 5416 26a36326d199
parent 4425 2314bb0c433d
permissions -rw-r--r--
Added a small example of the frontend still being worked but commited so the downloader now works

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

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