-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathqgeoserviceproviderpluginbingmaps.h
30 lines (25 loc) · 1.47 KB
/
qgeoserviceproviderpluginbingmaps.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef QGEOSERVICEPROVIDERBINGMAPS_H
#define QGEOSERVICEPROVIDERBINGMAPS_H
#include <QtCore/QObject>
#include <QtLocation/QGeoServiceProviderFactory>
class QGeoServiceProviderFactoryBingmaps: public QObject, public QGeoServiceProviderFactory
{
Q_OBJECT
Q_INTERFACES(QGeoServiceProviderFactory)
Q_PLUGIN_METADATA(IID "org.qt-project.qt.geoservice.serviceproviderfactory/5.0"
FILE "bingmaps_plugin.json")
public:
QGeoCodingManagerEngine *createGeocodingManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
QGeoRoutingManagerEngine *createRoutingManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
QPlaceManagerEngine *createPlaceManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
QGeoMappingManagerEngine *createMappingManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
};
#endif