tools/templates/main.cpp
author koda
Tue, 04 Jun 2013 16:08:36 +0200
branch0.9.19
changeset 9119 dfb3ffc68602
parent 359 59fbfc65fbda
permissions -rw-r--r--
this file is unused

#include <QApplication>

#include "mainform.h"

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