tools/templates/main.cpp
author unc0rr
Wed, 08 Oct 2008 18:25:08 +0000
changeset 1321 d7dc4e86201e
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Add protocol description (just started) - Some work on server to make team add posiible

#include <QApplication>

#include "mainform.h"

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