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
positionpollfactory.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
7
9
10QGeoPositionInfoSource *QGeoPositionInfoSourceFactoryPoll::positionInfoSource(QObject *parent, const QVariantMap &parameters)
11{
12 Q_UNUSED(parent)
13 Q_UNUSED(parameters)
14 return nullptr;
15}
16
17QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryPoll::satelliteInfoSource(QObject *parent, const QVariantMap &parameters)
18{
19 Q_UNUSED(parent)
20 Q_UNUSED(parameters)
21 return nullptr;
22}
23
24QGeoAreaMonitorSource *QGeoPositionInfoSourceFactoryPoll::areaMonitor(QObject *parent, const QVariantMap &parameters)
25{
26 Q_UNUSED(parameters)
28 if (ret && ret->isValid())
29 return ret;
30 delete ret;
31 return nullptr;
32}
33
34QT_END_NAMESPACE
35
36#include "moc_positionpollfactory.cpp"
Combined button and popup list for selecting options.