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

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}