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 BLUEZAPI2QT_PARAMETER_H |
10 | #define BLUEZAPI2QT_PARAMETER_H |
11 | |
12 | #include <QString> |
13 | |
14 | class Parameter |
15 | { |
16 | public: |
17 | static Parameter fromString(const QString &string); |
18 | |
19 | QString type() const; |
20 | QString name() const; |
21 | |
22 | private: |
23 | QString m_type; |
24 | QString m_name; |
25 | }; |
26 | |
27 | #endif |
28 | |