tools/templates/main.cpp
author sheepluva
Mon, 25 Oct 2010 17:39:50 +0200
changeset 3995 360332f8785f
parent 359 59fbfc65fbda
permissions -rw-r--r--
SmokeTrace: animation got aborted before last animation frame was displayed

#include <QApplication>

#include "mainform.h"

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