tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Mar 2018 16:52:04 +0100
changeset 13272 48b23e6f26d9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add icons to background themes; allow to hide themes explicitly by adding “hidden” key to theme.cfg

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

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