1 | /* |
---|---|
2 | * BluezQt - Asynchronous Bluez wrapper library |
3 | * |
4 | * SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com> |
5 | * |
6 | * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
7 | */ |
8 | |
9 | #ifndef BLUEZQT_PROFILE_P_H |
10 | #define BLUEZQT_PROFILE_P_H |
11 | |
12 | #include <QVariantMap> |
13 | |
14 | namespace BluezQt |
15 | { |
16 | class ProfilePrivate |
17 | { |
18 | public: |
19 | QVariantMap options; |
20 | }; |
21 | |
22 | } // namespace BluezQt |
23 | |
24 | #endif // BLUEZQT_PROFILE_P_H |
25 |