tools/templates/main.cpp
author unc0rr
Sat, 19 Jan 2013 00:51:28 +0400
changeset 8401 87410ae372f6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Server messages localization using Qt's l10n subsystem: - Strings to localize are marked with loc function in server sources - CMake finds loc calls and generates C++ header containing array of strings marked - lupdate - ... - PROFIT!

#include <QApplication>

#include "mainform.h"

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