tools/drawMapTest/main.cpp
author koda
Sat, 05 May 2012 17:29:04 +0100
changeset 7026 8d1724e1337e
parent 4425 2314bb0c433d
permissions -rw-r--r--
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)

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

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