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