tools/templates/main.cpp
author koda
Thu, 09 Dec 2010 22:50:16 +0100
changeset 4488 e83216eba1db
parent 359 59fbfc65fbda
permissions -rw-r--r--
forgot to update these files

#include <QApplication>

#include "mainform.h"

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