tools/drawMapTest/main.cpp
author sheepluva
Sat, 22 Oct 2011 01:00:21 +0200
changeset 6176 19ef039a8474
parent 4425 2314bb0c433d
permissions -rw-r--r--
frontend will use the data file misc/qt_style.css instead of hardcoded stylesheet - if the file exists

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

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