tools/templates/main.cpp
author sheepluva
Fri, 01 Apr 2016 15:36:19 +0200
changeset 11642 c82a0a886779
parent 359 59fbfc65fbda
permissions -rw-r--r--
merging 5 of Wuzzy's 6 patches. review for last patch pending (hwp content changes)

#include <QApplication>

#include "mainform.h"

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