tools/templates/main.cpp
author nemo
Tue, 02 Mar 2010 19:46:35 +0000
changeset 2912 76d43f7458ad
parent 359 59fbfc65fbda
permissions -rw-r--r--
French translation of 03-05. Still missing 05:11-15 and needs further proofing insertion of | in appropriate places

#include <QApplication>

#include "mainform.h"

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