tools/templates/main.cpp
author KoBeWi
Thu, 08 Feb 2018 09:14:20 +0100
changeset 12923 305f3667af20
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix how scheme files behave

#include <QApplication>

#include "mainform.h"

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