tools/drawMapTest/main.cpp
author koda
Tue, 21 Jun 2011 23:23:21 +0200
changeset 5282 f4f040891ee3
parent 4425 2314bb0c433d
permissions -rw-r--r--
whitelist Island theme on ios (with Tiy approval)

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

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