tools/templates/main.cpp
author unc0rr
Fri, 25 Jul 2008 19:03:27 +0000
changeset 1095 6c5e53821e6e
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Add cake sound - Fix nature theme

#include <QApplication>

#include "mainform.h"

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