tools/templates/main.cpp
author nemo
Tue, 20 Oct 2009 21:23:22 +0000
changeset 2570 7093e3413594
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove unneeded var from Smaxx' tag changes

#include <QApplication>

#include "mainform.h"

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