tools/templates/main.cpp
author koda
Fri, 03 Sep 2010 02:03:44 +0200
changeset 3823 cca9bfb88a24
parent 359 59fbfc65fbda
permissions -rw-r--r--
also remove sinegun from the ifrontend for whatever reason

#include <QApplication>

#include "mainform.h"

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