tools/templates/main.cpp
author nemo
Sat, 18 Dec 2010 10:43:36 -0500
changeset 4553 442bac2e6ca6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Reenable cReadyDelay - this requires testing on m8y.org from now on until the message is added to other servers

#include <QApplication>

#include "mainform.h"

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