tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Mar 2018 21:05:10 +0100
changeset 13128 2f7c8e2ebe8e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Merge server stuff from alfadur

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

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