tools/drawMapTest/main.cpp
author koda
Sat, 01 Oct 2011 02:40:26 +0200
changeset 6074 047eaed35cbb
parent 4425 2314bb0c433d
permissions -rw-r--r--
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)

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

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