tools/templates/main.cpp
author sheepluva
Tue, 04 May 2010 03:04:07 +0000
changeset 3417 27ff4a6375dd
parent 359 59fbfc65fbda
permissions -rw-r--r--
on portal death: make sure that the linked portal know it has been unlinked

#include <QApplication>

#include "mainform.h"

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