tools/templates/main.cpp
author unc0rr
Fri, 13 Jul 2012 13:21:52 +0400
changeset 7388 92535bc7e928
parent 359 59fbfc65fbda
permissions -rw-r--r--
Catch all exceptions in clientSendLoop. If there could something besides IOException be thrown there, that would explain ping timeouts server issue.

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}