tools/drawMapTest/main.cpp
author unc0rr
Sun, 15 May 2011 18:10:01 +0400
changeset 5209 f7a610e2ef5f
parent 4425 2314bb0c433d
permissions -rw-r--r--
On restart command close server socket and spawn new server, keep running until last client quits

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

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