1 | /* |
2 | * BluezQt - Asynchronous Bluez wrapper library |
3 | * |
4 | * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de> |
5 | * |
6 | * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
7 | */ |
8 | |
9 | #ifndef BLUEZQT_LEADVERTISEMENT_P_H |
10 | #define BLUEZQT_LEADVERTISEMENT_P_H |
11 | |
12 | #include <QDBusObjectPath> |
13 | |
14 | namespace BluezQt |
15 | { |
16 | class LEAdvertisementPrivate |
17 | { |
18 | public: |
19 | explicit LEAdvertisementPrivate(const QStringList &serviceUuids); |
20 | QStringList m_serviceUuids; |
21 | QDBusObjectPath m_objectPath; |
22 | QHash<QString, QByteArray> m_serviceData; |
23 | QHash<quint16, QByteArray> m_manufacturerData; |
24 | }; |
25 | |
26 | } // namespace BluezQt |
27 | |
28 | #endif // BLUEZQT_LEADVERTISEMENT_P_H |
29 | |