tools/templates/main.cpp
author unc0rr
Fri, 27 Jun 2008 19:57:24 +0000
changeset 1036 551af2411980
parent 359 59fbfc65fbda
permissions -rw-r--r--
Wave and Hurrah taunts

#include <QApplication>

#include "mainform.h"

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