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

source code of bluez-qt/tools/bluezapi2qt/Parameter.h