/* * BluezQt - Asynchronous BlueZ wrapper library * * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer * * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #ifndef PROPERTIES_H #define PROPERTIES_H #include "Property.h" #include class Properties { public: Properties(); void parse(const QString &line); bool finalize(); std::list properties() const; private: std::list m_properties; Property *m_currentProperty = nullptr; }; #endif // PROPERTIES_H