tools/templates/main.cpp
author unc0rr
Fri, 13 Dec 2013 22:14:02 +0400
changeset 9790 0b4b9fda5bd4
parent 359 59fbfc65fbda
permissions -rw-r--r--
- /owner command to specify team owner - Move team-related handlers to uTeams

#include <QApplication>

#include "mainform.h"

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