tools/templates/main.cpp
author unc0rr
Mon, 02 Jun 2008 22:04:06 +0000
changeset 972 c90d58ae315e
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update polish 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();
}