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_GATTMANAGER_P_H |
10 | #define BLUEZQT_GATTMANAGER_P_H |
11 | |
12 | #include "bluezgattmanager1.h" |
13 | |
14 | class QString; |
15 | |
16 | namespace BluezQt |
17 | { |
18 | class GattManagerPrivate |
19 | { |
20 | public: |
21 | GattManagerPrivate(const QString &path); |
22 | ~GattManagerPrivate(); |
23 | |
24 | OrgBluezGattManager1Interface m_dbusInterface; |
25 | }; |
26 | |
27 | } // namespace BluezQt |
28 | |
29 | #endif |
30 | |