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_LEADVERTISINGMANAGER_P_H |
10 | #define BLUEZQT_LEADVERTISINGMANAGER_P_H |
11 | |
12 | #include "bluezleadvertisingmanager1.h" |
13 | |
14 | namespace BluezQt |
15 | { |
16 | typedef org::bluez::LEAdvertisingManager1 BluezLEAdvertisingManager; |
17 | |
18 | class LEAdvertisingManagerPrivate |
19 | { |
20 | public: |
21 | QString m_path; |
22 | BluezLEAdvertisingManager *m_bluezLEAdvertisingManager = nullptr; |
23 | }; |
24 | |
25 | } // namespace BluezQt |
26 | |
27 | #endif // BLUEZQT_LEADVERTISINGMANAGER_P_H |
28 | |