tools/templates/main.cpp
author koda
Sat, 01 May 2010 12:53:55 +0000
changeset 3385 361bd29293f4
parent 359 59fbfc65fbda
permissions -rw-r--r--
add automatic rotation in ipad (landscape only) possible fix for compiling hw under haiku restore randomity in choosing the theme

#include <QApplication>

#include "mainform.h"

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