tools/templates/main.cpp
author koda
Tue, 21 Jun 2011 23:23:21 +0200
changeset 5282 f4f040891ee3
parent 359 59fbfc65fbda
permissions -rw-r--r--
whitelist Island theme on ios (with Tiy approval)

#include <QApplication>

#include "mainform.h"

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