tools/templates/main.cpp
author koda
Sun, 26 Jun 2011 23:09:48 +0200
branch0.9.15
changeset 4725 20a0b49802a6
parent 359 59fbfc65fbda
permissions -rw-r--r--
fix 0.9.15 compilation when debugfile is not specified (there is a better fix already in trunk)

#include <QApplication>

#include "mainform.h"

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