tools/templates/main.cpp
author unc0rr
Wed, 25 Jun 2008 09:17:36 +0000
changeset 1025 3c627510b84c
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update Italian translation

#include <QApplication>

#include "mainform.h"

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