tools/templates/main.cpp
author unc0rr
Thu, 16 Oct 2008 16:57:51 +0000
changeset 1367 e1aaa1a4901f
parent 359 59fbfc65fbda
permissions -rw-r--r--
Use seduction sound

#include <QApplication>

#include "mainform.h"

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