tools/drawMapTest/main.cpp
author koda
Mon, 31 Oct 2011 01:44:32 +0100
changeset 6246 6b2d19ed521a
parent 4425 2314bb0c433d
permissions -rw-r--r--
just moving ios server stuff around

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

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