tools/templates/main.cpp
author nemo
Sat, 17 Oct 2009 23:03:31 +0000
changeset 2532 43d700d8dad0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Disable hiding of frontend for now - seems it might be reasons for frontend shutting down when host quits.

#include <QApplication>

#include "mainform.h"

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