tools/drawMapTest/main.cpp
author unc0rr
Wed, 03 Jun 2015 23:24:56 +0300
branch0.9.21
changeset 10771 ac06370b7436
parent 4425 2314bb0c433d
permissions -rw-r--r--
Lazy fix for server build

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

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