tools/templates/main.cpp
author igorko
Tue, 05 Apr 2011 10:59:23 -0400
changeset 5101 a2b72f966073
parent 359 59fbfc65fbda
permissions -rw-r--r--
Ukranian localisation of a voicepack. Still to be decided, if this should localised, and played as Default if a user is using the ukranian locale.

#include <QApplication>

#include "mainform.h"

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