tools/templates/main.cpp
author nemo
Mon, 15 Jun 2009 13:48:31 +0000
changeset 2164 3d7e8afd869d
parent 359 59fbfc65fbda
permissions -rw-r--r--
Full set of translated messages for zh_TW - says he will add more original ones later

#include <QApplication>

#include "mainform.h"

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