tools/templates/main.cpp
author koda
Sun, 12 Jul 2009 19:12:08 +0000
changeset 2260 31756e21c436
parent 359 59fbfc65fbda
permissions -rw-r--r--
other indentation, binding and miscellaneous fixes to openalbridge

#include <QApplication>

#include "mainform.h"

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