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