tools/templates/main.cpp
author Henek
Tue, 28 Jun 2011 21:31:02 +0200
changeset 5346 ee611abe9158
parent 359 59fbfc65fbda
permissions -rw-r--r--
first draft of a html based theme editor

#include <QApplication>

#include "mainform.h"

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