tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 18 Mar 2018 14:38:48 +0100
changeset 13247 4df9d8cedf7f
parent 4425 2314bb0c433d
permissions -rw-r--r--
ThemeModel: Filter themes based on IsDlcRole rather than string-based

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

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