summaryrefslogtreecommitdiffstats
path: root/qgeoserviceproviderpluginomim.h
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@qt.io>2018-04-10 13:09:12 +0200
committerPaolo Angelelli <paolo.angelelli@qt.io>2018-04-10 11:10:42 +0000
commit8871cc4ab7a962ce66ab06522f792eb9f1311433 (patch)
treeb2536c23ffefa54d0004228d202f9e9a808cc3ba /qgeoserviceproviderpluginomim.h
parent0c1a901902c28eaed5992970229ed50140dc5b39 (diff)
First commitHEADmaster
Needs a 3rdParty directory with a build of omim to link against. This version only partially supports places and nothing else. Change-Id: I46771b3bbfddbcd5bb2d127f6f727eed373a8903 Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'qgeoserviceproviderpluginomim.h')
-rw-r--r--qgeoserviceproviderpluginomim.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/qgeoserviceproviderpluginomim.h b/qgeoserviceproviderpluginomim.h
new file mode 100644
index 0000000..f0f4764
--- /dev/null
+++ b/qgeoserviceproviderpluginomim.h
@@ -0,0 +1,83 @@
+/****************************************************************************
+**
+** Copyright (C) 2017 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the QtLocation module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QGEOSERVICEPROVIDER_OMIM_H
+#define QGEOSERVICEPROVIDER_OMIM_H
+
+#include <QtCore/QObject>
+#include <QtLocation/QGeoServiceProviderFactory>
+
+QT_BEGIN_NAMESPACE
+
+#ifndef QRC_INIT
+#define QRC_INIT( s ) Q_INIT_RESOURCE( s )
+#endif
+
+static void initResources()
+{
+// QRC_INIT( PLUGIN_QRC_FILENAME ); # no qrc for the moment
+}
+
+class QGeoServiceProviderFactoryOmim: public QObject, public QGeoServiceProviderFactory
+{
+ Q_OBJECT
+ Q_INTERFACES(QGeoServiceProviderFactory)
+ Q_PLUGIN_METADATA(IID "org.qt-project.qt.geoservice.serviceproviderfactory/5.0"
+ FILE "omim_plugin.json")
+
+public:
+ QGeoServiceProviderFactoryOmim()
+ {
+ initResources();
+ }
+
+ QGeoCodingManagerEngine *createGeocodingManagerEngine(const QVariantMap &parameters,
+ QGeoServiceProvider::Error *error,
+ QString *errorString) const;
+ QGeoMappingManagerEngine *createMappingManagerEngine(const QVariantMap &parameters,
+ QGeoServiceProvider::Error *error,
+ QString *errorString) const;
+ QGeoRoutingManagerEngine *createRoutingManagerEngine(const QVariantMap &parameters,
+ QGeoServiceProvider::Error *error,
+ QString *errorString) const;
+ QPlaceManagerEngine *createPlaceManagerEngine(const QVariantMap &parameters,
+ QGeoServiceProvider::Error *error,
+ QString *errorString) const;
+};
+
+QT_END_NAMESPACE
+
+#endif