File indexing completed on 2024-04-28 15:17:51

0001 /*
0002  * BluezQt - Asynchronous BlueZ wrapper library
0003  *
0004  * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #ifndef BLUEZQT_GATTCHARACTERISTIC_P_H
0010 #define BLUEZQT_GATTCHARACTERISTIC_P_H
0011 
0012 #include "gattcharacteristic.h"
0013 
0014 namespace BluezQt
0015 {
0016 class GattServicePrivate;
0017 
0018 class GattCharacterisiticPrivate
0019 {
0020 public:
0021     GattCharacterisiticPrivate(const QString &uuid, const GattService *service);
0022 
0023     QString m_uuid;
0024     const GattService *m_service;
0025     QDBusObjectPath m_objectPath;
0026     QByteArray m_value;
0027     GattCharacteristic::ReadCallback m_readCallback = nullptr;
0028 };
0029 
0030 } // namespace BluezQt
0031 
0032 #endif