tools/templates/main.cpp
author sheepluva
Fri, 21 Oct 2011 04:11:26 +0200
changeset 6164 62aa418ed214
parent 359 59fbfc65fbda
permissions -rw-r--r--
change SDL.h/SDL.cpp to use HWDataManager instead of poking around on the harddrive - also I added doc/comments to the class

#include <QApplication>

#include "mainform.h"

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