tools/templates/main.cpp
author unc0rr
Thu, 08 May 2008 22:44:05 +0000
changeset 920 4144204da077
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove recently added debug, as cluster bomb issue is fixed

#include <QApplication>

#include "mainform.h"

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