/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtSensors module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #ifndef QSENSORMANAGER_H #define QSENSORMANAGER_H #include QT_BEGIN_NAMESPACE class QSensorBackend; class QSensorBackendFactory; class QSensorPluginInterface; class Q_SENSORS_EXPORT QSensorManager { public: // Register a backend (call this from a plugin) static void registerBackend(const QByteArray &type, const QByteArray &identifier, QSensorBackendFactory *factory); static void unregisterBackend(const QByteArray &type, const QByteArray &identifier); static bool isBackendRegistered(const QByteArray &type, const QByteArray &identifier); // Create a backend (uses the type and identifier set in the sensor) static QSensorBackend *createBackend(QSensor *sensor); static void setDefaultBackend(const QByteArray &type, const QByteArray &identifier); }; class Q_SENSORS_EXPORT QSensorBackendFactory { public: virtual QSensorBackend *createBackend(QSensor *sensor) = 0; protected: virtual ~QSensorBackendFactory(); }; QT_END_NAMESPACE #endif