tools/drawMapTest/main.cpp
author unc0rr
Sun, 17 Jun 2012 00:08:20 +0400
changeset 7252 74a92f39703b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Catch all types of exceptions in recv thread. Should probably help with ghosts problem, though I have no idea which else kind of exception could arise there.

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

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