tools/templates/main.cpp
author unc0rr
Sat, 20 Jun 2009 07:45:05 +0000
changeset 2175 9e64d9f1bcab
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();
}