tools/templates/main.cpp
author unc0rr
Wed, 08 Oct 2008 18:46:02 +0000
changeset 1324 4b48ae1f0f53
parent 359 59fbfc65fbda
permissions -rw-r--r--
Get rid of team id in client code

#include <QApplication>

#include "mainform.h"

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