tools/templates/main.cpp
author koda
Thu, 04 Apr 2013 14:37:19 +0200
branchwebgl
changeset 8860 bde641cf53c8
parent 359 59fbfc65fbda
permissions -rw-r--r--
remove now-unused function

#include <QApplication>

#include "mainform.h"

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