tools/drawMapTest/main.cpp
author unc0rr
Sat, 01 Dec 2018 20:38:45 +0100
changeset 14353 5cc671f988e7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make server aware of new protocol versions

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

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