Dokit 0.5.3-pre
Internal development documentation
Loading...
Searching...
No Matches
deviceinfoservice_p.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2022-2024 Paul Colby <git@colby.id.au>
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
4/*!
5 * \file
6 * Declares the DeviceInfoServicePrivate class.
7 */
8
9#ifndef QTPOKIT_INFOSERVICE_P_H
10#define QTPOKIT_INFOSERVICE_P_H
11
13
15
17
19{
20 Q_OBJECT
21
22public:
23 explicit DeviceInfoServicePrivate(QLowEnergyController * controller, DeviceInfoService * const q);
24
25protected:
26 void characteristicRead(const QLowEnergyCharacteristic &characteristic,
27 const QByteArray &value) override;
28
29private:
30 Q_DECLARE_PUBLIC(DeviceInfoService)
32 friend class TestDeviceInfoService;
33};
34
36
37#endif // QTPOKIT_INFOSERVICE_P_H
Declares the AbstractPokitServicePrivate class.
The AbstractPokitServicePrivate class provides private implementation for AbstractPokitService.
virtual void characteristicRead(const QLowEnergyCharacteristic &characteristic, const QByteArray &value)
Handles QLowEnergyService::characteristicRead events.
The DeviceInfoServicePrivate class provides private implementation for DeviceInfoService.
The DeviceInfoService class accesses the Device Info service of Pokit devices.
Declares the DeviceInfoService class.
Q_DISABLE_COPY(Class)
#define QTPOKIT_BEGIN_NAMESPACE
Macro for starting the QtPokit library's top-most namespace (if one is defined).
#define QTPOKIT_EXPORT
QtPokit library export/import macro.
#define QTPOKIT_END_NAMESPACE
Macro for ending the QtPokit library's top-most namespace (if one is defined).