tools/drawMapTest/main.cpp
author koda
Sun, 10 Mar 2013 02:32:25 +0100
changeset 8710 8d0a150d42c2
parent 4425 2314bb0c433d
permissions -rw-r--r--
cleanup file loading, this codepath can be used to load url schemes

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

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