tools/templates/main.cpp
author koda
Wed, 29 May 2013 10:51:21 +0200
changeset 9075 201e00bafcd1
parent 359 59fbfc65fbda
permissions -rw-r--r--
two little changelog entries

#include <QApplication>

#include "mainform.h"

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