/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2015 Simon Stürz * * Copyright (C) 2014 Michael Zanetti * * * * This file is part of guh. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this library; If not, see * * . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef DEVICEDESCRIPTION_H #define DEVICEDESCRIPTION_H #include "libguh.h" #include "typeutils.h" #include "types/param.h" #include class LIBGUH_EXPORT DeviceDescriptor { public: DeviceDescriptor(); DeviceDescriptor(const DeviceClassId &deviceClassId, const QString &title = QString(), const QString &description = QString()); DeviceDescriptor(const DeviceDescriptorId &id, const DeviceClassId &deviceClassId, const QString &title = QString(), const QString &description = QString()); bool isValid() const; DeviceDescriptorId id() const; DeviceClassId deviceClassId() const; QString title() const; void setTitle(const QString &title); QString description() const; void setDescription(const QString &description); ParamList params() const; void setParams(const ParamList ¶ms); private: DeviceDescriptorId m_id; DeviceClassId m_deviceClassId; QString m_title; QString m_description; ParamList m_params; }; Q_DECLARE_METATYPE(DeviceDescriptor) #endif // DEVICEDESCRIPTION_H