tools/templates/main.cpp
author nemo
Tue, 05 Jan 2010 21:26:38 +0000
changeset 2677 83ad68ceef72
parent 359 59fbfc65fbda
permissions -rw-r--r--
Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.

#include <QApplication>

#include "mainform.h"

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