tools/drawMapTest/main.cpp
author m4tx
Sun, 11 Dec 2011 23:15:06 +0300
changeset 6525 6c97379c584b
parent 4425 2314bb0c433d
permissions -rw-r--r--
[GCI] backz task: unify the back button functionality, avoid using the save button

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

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