tools/templates/main.cpp
author unc0rr
Fri, 07 Mar 2008 14:32:26 +0000
changeset 800 e95f16b7ec80
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Your hedgehogs says you: "Yes, sir" - Hedgehog laughs dropping mine

#include <QApplication>

#include "mainform.h"

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