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_gypsy.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
4
#
include
"qgeopositioninfosourcefactory_gypsy.h"
5
#
include
"qgeosatelliteinfosource_gypsy_p.h"
6
7
QGeoPositionInfoSource
*QGeoPositionInfoSourceFactoryGypsy::positionInfoSource(QObject *parent,
const
QVariantMap ¶meters)
8
{
9
Q_UNUSED(parent)
10
Q_UNUSED(parameters)
11
return
nullptr
;
12
}
13
14
QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryGypsy::satelliteInfoSource(QObject *parent,
const
QVariantMap ¶meters)
15
{
16
Q_UNUSED(parameters)
17
QGeoSatelliteInfoSourceGypsy *src =
new
QGeoSatelliteInfoSourceGypsy(parent);
18
if
(src->init(parameters) < 0) {
19
delete
src;
20
src =
nullptr
;
21
}
22
return
src;
23
}
24
25
QGeoAreaMonitorSource *QGeoPositionInfoSourceFactoryGypsy::areaMonitor(QObject *parent,
const
QVariantMap ¶meters)
26
{
27
Q_UNUSED(parent)
28
Q_UNUSED(parameters)
29
return
nullptr
;
30
}
QGeoPositionInfoSource
\inmodule QtPositioning
Definition
qgeopositioninfosource.h:15
qtpositioning
src
plugins
position
gypsy
qgeopositioninfosourcefactory_gypsy.cpp
Generated on
for Qt by
1.14.0