File indexing completed on 2024-04-28 03:52:08

0001 /*
0002  * BluezQt - Asynchronous BlueZ wrapper library
0003  *
0004  * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #ifndef TYPEANNOTATION_H
0010 #define TYPEANNOTATION_H
0011 
0012 #include <QString>
0013 
0014 enum class AnnotationType {
0015     Bluez = 0,
0016     Dbus = 1,
0017     Qt = 2,
0018 };
0019 QString annotateType(AnnotationType from, AnnotationType to, const QString &type);
0020 
0021 QString bluezToQt(const QString &type);
0022 
0023 #endif // TYPEANNOTATION_H