tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Feb 2018 09:32:28 +0100
changeset 12956 37b81c20358b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Refactor Construction Mode to NOT use localized strings as identifiers Yes, it actually used strings returned by loc() as identifiers. Crazy!

#include <QApplication>

#include "mainform.h"

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