tools/templates/main.cpp
author nemo
Sat, 16 May 2009 14:51:04 +0000
changeset 2061 0f99aa28b9f4
parent 359 59fbfc65fbda
permissions -rw-r--r--
Should disable construction in the shoppa hack, I think. Construction is annoying

#include <QApplication>

#include "mainform.h"

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