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