tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Mar 2018 21:28:10 +0100
changeset 13222 d6364e31f9c9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Drop Qt XML from dependencies. QXmlStreamReader is part of QtCore

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

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