tools/templates/main.cpp
author unc0rr
Sun, 20 Jan 2008 13:41:38 +0000
changeset 722 993faebbe546
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Use shotgun training as more attractive than the second one with bazooka - More filters for make package_source

#include <QApplication>

#include "mainform.h"

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