tools/drawMapTest/main.cpp
author unc0rr
Sun, 04 Sep 2011 20:21:08 +0400
changeset 5765 e87f6756773e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Allow surfing, download and extract only .zip files

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

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