tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 19:38:34 +0200
changeset 12347 ad09d733fdb0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Disable resurrection message for respawning with heResurrectalbe It was often irritating. Now this message is only shown for using the resurrector utility.

#include <QApplication>

#include "mainform.h"

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