tools/templates/main.cpp
author unc0rr
Sat, 16 Dec 2017 23:26:13 +0100
changeset 12854 28cb18c5e712
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add new qmlfrontend project template

#include <QApplication>

#include "mainform.h"

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