tools/templates/main.cpp
author unc0rr
Fri, 20 Feb 2009 19:54:02 +0000
changeset 1818 4391c7037281
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix team removing on PART command

#include <QApplication>

#include "mainform.h"

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