tools/drawMapTest/main.cpp
author Xeli
Tue, 28 Jun 2011 17:51:58 +0200
branchhedgeroid
changeset 5367 c7b8da094474
parent 4425 2314bb0c433d
permissions -rw-r--r--
The android build doesn't use cmake thus this file is needed. It doesn't have correct values yet..

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

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