tools/templates/main.cpp
author Henek
Thu, 30 Dec 2010 20:55:22 +0100
changeset 4789 7036abbaf3bb
parent 359 59fbfc65fbda
permissions -rw-r--r--
finnished refactoring the rest themes, and note comments on Eyes and Deepspace

#include <QApplication>

#include "mainform.h"

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