tools/drawMapTest/main.cpp
author Xeli
Tue, 05 Jul 2011 18:22:07 +0200
branchhedgeroid
changeset 5393 2a8bdfc5b036
parent 4425 2314bb0c433d
permissions -rw-r--r--
removed the extra DataPackage apk, the main app will download it itself

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

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