tools/templates/main.cpp
author koda
Wed, 03 Feb 2010 23:36:42 +0000
changeset 2743 39d097ac2276
parent 359 59fbfc65fbda
permissions -rw-r--r--
implement transition in the way i had in mind

#include <QApplication>

#include "mainform.h"

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