tools/templates/main.cpp
author koda
Sat, 11 Jul 2009 15:22:10 +0000
changeset 2254 bb68e5a5be56
parent 359 59fbfc65fbda
permissions -rw-r--r--
-fix bamboo theme (unsupported color profile) -added bamboo theme lowres images -new bindings for displaying the iPhone keyboard

#include <QApplication>

#include "mainform.h"

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