tools/drawMapTest/main.cpp
author unc0rr
Sun, 04 Sep 2011 14:44:13 +0400
changeset 5756 b451fd21ff4c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Extract downloaded content into temp dir

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

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