tools/templates/main.cpp
author sheepluva
Tue, 10 Jun 2014 23:21:22 +0200
changeset 10275 6c91047f59b6
parent 359 59fbfc65fbda
permissions -rw-r--r--
RAR: cleaning up a bit of the IFDEF-clusterf*ck

#include <QApplication>

#include "mainform.h"

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