tools/drawMapTest/main.cpp
author koda
Tue, 04 Oct 2011 19:20:42 +0200
branchhedgeroid
changeset 6033 6bcc36225162
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix compiling for android, strip out all delphi code, objfpc ftw

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

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