tools/templates/main.cpp
author unc0rr
Mon, 20 Oct 2008 12:58:16 +0000
changeset 1382 b6ab9fea22fe
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Small but very important fix - Create a structure to store global server options

#include <QApplication>

#include "mainform.h"

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