tools/templates/main.cpp
author unc0rr
Wed, 05 Aug 2009 05:44:13 +0000
changeset 2296 19f2f76dc346
parent 359 59fbfc65fbda
permissions -rw-r--r--
Patch for compiling with 6.10 (define NEW_EXCEPTIONS to do that) Not tested

#include <QApplication>

#include "mainform.h"

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