tools/drawMapTest/main.cpp
author koda
Sun, 22 Apr 2012 02:10:44 +0200
changeset 6906 6f5e1e64f106
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix compiling hw for ios (was looking for the wrong math.h and used an old variable name)

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

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