tools/templates/main.cpp
author unc0rr
Thu, 09 Oct 2008 21:00:42 +0000
changeset 1340 430d210d54ae
parent 359 59fbfc65fbda
permissions -rw-r--r--
Flush CONNECTED message, so client hasn't to wait for it on connect

#include <QApplication>

#include "mainform.h"

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