tools/drawMapTest/main.cpp
author koda
Mon, 01 Aug 2011 01:54:18 +0200
changeset 5487 900b3fe02546
parent 4425 2314bb0c433d
permissions -rw-r--r--
i had to forget something about the ios project file, by contract

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

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