tools/templates/main.cpp
author unc0rr
Sun, 18 Oct 2009 14:42:14 +0000
changeset 2549 80ef2224a520
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update dependencies list

#include <QApplication>

#include "mainform.h"

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