tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 31 Oct 2018 18:41:02 +0100
changeset 14068 321bc980fcaa
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix various string errors in Lua locale files - Wrong format symbol - Typos - Empty translations

#include <QApplication>

#include "mainform.h"

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