tools/templates/main.cpp
author koda
Thu, 09 Jul 2009 00:56:26 +0000
changeset 2244 853a1db1cff6
parent 359 59fbfc65fbda
permissions -rw-r--r--
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general

#include <QApplication>

#include "mainform.h"

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