tools/templates/main.cpp
author nemo
Tue, 19 Apr 2011 15:34:21 -0400
changeset 5165 91fb710a6668
parent 359 59fbfc65fbda
permissions -rw-r--r--
Disable Digital/Beach since Tiy's made clear he feels the problems are too extensive to fix. Remove Chunk from Beach theme due copyright violation

#include <QApplication>

#include "mainform.h"

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