tools/templates/main.cpp
author koda
Tue, 28 Jun 2011 01:05:33 +0200
branch0.9.15
changeset 4732 10f675aee907
parent 359 59fbfc65fbda
permissions -rw-r--r--
expose the available translations in the plist file for 0.9.15 (rf31d1073345e)

#include <QApplication>

#include "mainform.h"

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