1 | /* |
2 | * BluezQt - Asynchronous Bluez wrapper library |
3 | * |
4 | * SPDX-FileCopyrightText: 2018 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_MEDIAENDPOINT_P_H |
10 | #define BLUEZQT_MEDIAENDPOINT_P_H |
11 | |
12 | #include <QDBusObjectPath> |
13 | #include <QVariantMap> |
14 | |
15 | #include "mediaendpoint.h" |
16 | |
17 | namespace BluezQt |
18 | { |
19 | class MediaEndpointPrivate |
20 | { |
21 | public: |
22 | explicit MediaEndpointPrivate(const MediaEndpoint::Configuration &configuration); |
23 | |
24 | void init(const MediaEndpoint::Configuration &configuration); |
25 | |
26 | QVariantMap m_properties; |
27 | MediaEndpoint::Configuration m_configuration; |
28 | QDBusObjectPath m_objectPath; |
29 | }; |
30 | |
31 | } // namespace BluezQt |
32 | |
33 | #endif // BLUEZQT_MEDIAENDPOINT_P_H |
34 | |