tools/templates/main.cpp
author sheepluva
Mon, 16 Jun 2014 19:07:11 +0200
changeset 10315 d464a04450cc
parent 359 59fbfc65fbda
permissions -rw-r--r--
Qt-Frontend: update description of findhh to better reflect current behavior. thanks to the friendly reminder in issue #805

#include <QApplication>

#include "mainform.h"

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