tools/templates/main.cpp
author koda
Sat, 06 Apr 2013 01:19:47 +0200
changeset 8880 71ed64b18540
parent 359 59fbfc65fbda
permissions -rw-r--r--
reintroduce the notice for restarting frontend after changing language

#include <QApplication>

#include "mainform.h"

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