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_winrt.cpp
Go to the documentation of this file.
1// Copyright (C) 2015 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
8#include <QtCore/qloggingcategory.h>
9
10Q_LOGGING_CATEGORY(lcPositioningWinRT, "qt.positioning.winrt")
11
12QT_BEGIN_NAMESPACE
13
14QGeoPositionInfoSource *QGeoPositionInfoSourceFactoryWinRT::positionInfoSource(QObject *parent, const QVariantMap &parameters)
15{
16 qCDebug(lcPositioningWinRT) << __FUNCTION__;
17 Q_UNUSED(parameters)
18 QGeoPositionInfoSourceWinRT *src = new QGeoPositionInfoSourceWinRT(parent);
19 return src;
20}
21
22QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryWinRT::satelliteInfoSource(QObject *parent, const QVariantMap &parameters)
23{
24 qCDebug(lcPositioningWinRT) << __FUNCTION__;
25 Q_UNUSED(parent)
26 Q_UNUSED(parameters)
27 return nullptr;
28}
29
30QGeoAreaMonitorSource *QGeoPositionInfoSourceFactoryWinRT::areaMonitor(QObject *parent, const QVariantMap &parameters)
31{
32 qCDebug(lcPositioningWinRT) << __FUNCTION__;
33 Q_UNUSED(parent)
34 Q_UNUSED(parameters)
35 return nullptr;
36}
37
38QT_END_NAMESPACE
Q_LOGGING_CATEGORY(lcEventDispatcher, "qt.eventdispatcher")