tools/templates/main.cpp
author unc0rr
Sat, 15 Dec 2007 20:41:13 +0000
changeset 669 741e7490d32b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update 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();
}