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_GATTSERVICE_P_H |
10 | #define BLUEZQT_GATTSERVICE_P_H |
11 | |
12 | #include <QDBusObjectPath> |
13 | |
14 | namespace BluezQt |
15 | { |
16 | class GattServicePrivate |
17 | { |
18 | public: |
19 | GattServicePrivate(const QString &uuid, bool isPrimary, const QString &appPath); |
20 | |
21 | QString m_uuid; |
22 | bool m_isPrimary; |
23 | QDBusObjectPath m_objectPath; |
24 | }; |
25 | |
26 | } // namespace BluezQt |
27 | |
28 | #endif |
29 | |