tools/templates/main.cpp
author unc0rr
Sun, 28 Jan 2007 21:03:58 +0000
changeset 376 b5175878dc11
parent 359 59fbfc65fbda
permissions -rw-r--r--
empty ChangeLog, just to not forget to make it for future release

#include <QApplication>

#include "mainform.h"

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