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 TYPEANNOTATION_H |
10 | #define TYPEANNOTATION_H |
11 | |
12 | #include <QString> |
13 | |
14 | enum class AnnotationType { |
15 | Bluez = 0, |
16 | Dbus = 1, |
17 | Qt = 2, |
18 | }; |
19 | QString annotateType(AnnotationType from, AnnotationType to, const QString &type); |
20 | |
21 | QString bluezToQt(const QString &type); |
22 | |
23 | #endif // TYPEANNOTATION_H |
24 | |