tools/templates/main.cpp
author koda
Tue, 04 Dec 2012 03:27:12 +0100
branchflibqtfrontend
changeset 8216 4a7535d17d57
parent 359 59fbfc65fbda
permissions -rw-r--r--
readd this debug line, commented out, could be useful

#include <QApplication>

#include "mainform.h"

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