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_wasm.h
Go to the documentation of this file.
1// Copyright (C) 2024 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#ifndef QGEOPOSITIONINFOSOURCEFACTORY_WASM_H
6#define QGEOPOSITIONINFOSOURCEFACTORY_WASM_H
7
8#include <QObject>
9#include <QGeoPositionInfoSourceFactory>
10
11class QGeoPositionInfoSourceFactoryWasm : public QObject, public QGeoPositionInfoSourceFactory
12{
13 Q_OBJECT
14 Q_PLUGIN_METADATA(IID "org.qt-project.qt.position.sourcefactory/6.0"
15 FILE "plugin.json")
16 Q_INTERFACES(QGeoPositionInfoSourceFactory)
17public:
18 QGeoPositionInfoSource *positionInfoSource(QObject *parent, const QVariantMap &parameters) override;
19 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent, const QVariantMap &parameters) override;
20 QGeoAreaMonitorSource *areaMonitor(QObject *parent, const QVariantMap &parameters) override;
21};
22
23#endif // QGEOPOSITIONINFOSOURCEFACTORY_CL_H