tools/templates/main.cpp
author sheepluva
Thu, 12 Jun 2014 13:43:44 +0200
changeset 10283 f5573ef8cda9
parent 359 59fbfc65fbda
permissions -rw-r--r--
expose lfIndestructable, lfIce and lfBounce

#include <QApplication>

#include "mainform.h"

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