Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qgeopositioninfosourcefactory.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
5
6QT_BEGIN_NAMESPACE
7
8/*!
9 \class QGeoPositionInfoSourceFactory
10 \inmodule QtPositioning
11 \since 5.2
12
13 \brief The QGeoPositionInfoSourceFactory class is a factory class used
14 as the plugin interface for external providers of positioning data.
15
16 Each factory method takes a parameters argument, which allows to configure
17 the created source.
18*/
19
20/*!
21 \fn QGeoPositionInfoSource *QGeoPositionInfoSourceFactory::positionInfoSource(QObject *parent, const QVariantMap &parameters)
22
23 Returns a new QGeoPositionInfoSource associated with this plugin
24 with parent \a parent, and using \a parameters as configuration parameters.
25 Can also return 0, in which case the plugin loader will use the factory with
26 the next highest priority.
27*/
28
29/*!
30 \fn QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactory::satelliteInfoSource(QObject *parent, const QVariantMap &parameters)
31
32 Returns a new QGeoSatelliteInfoSource associated with this plugin
33 with parent \a parent, and using \a parameters as configuration parameters.
34 Can also return 0, in which case the plugin loader will use the factory with
35 the next highest priority.
36*/
37
38/*!
39 \fn QGeoAreaMonitorSource *QGeoPositionInfoSourceFactory::areaMonitor(QObject *parent, const QVariantMap &parameters);
40
41 Returns a new QGeoAreaMonitorSource associated with this plugin with parent
42 \a parent, and using \a parameters as configuration parameters.
43 Can also return 0, in which case the plugin loader will use the factory with
44 the next highest priority.
45*/
46
47/*!
48 Destroys the position info source factory.
49*/
50QGeoPositionInfoSourceFactory::~QGeoPositionInfoSourceFactory()
51{}
52
53QT_END_NAMESPACE