/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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 PARAM_H #define PARAM_H #include "libguh.h" #include "typeutils.h" #include #include class LIBGUH_EXPORT Param { public: Param(const ParamTypeId ¶mTypeId = ParamTypeId(), const QVariant &value = QVariant()); ParamTypeId paramTypeId() const; QVariant value() const; void setValue(const QVariant &value); bool isValid() const; private: ParamTypeId m_paramTypeId; QVariant m_value; }; Q_DECLARE_METATYPE(Param) QDebug operator<<(QDebug dbg, const Param ¶m); class LIBGUH_EXPORT ParamList: public QList { public: bool hasParam(const ParamTypeId ¶mTypeId) const; QVariant paramValue(const ParamTypeId ¶mTypeId) const; bool setParamValue(const ParamTypeId ¶mTypeId, const QVariant &value); ParamList operator<<(const Param ¶m); private: QList m_ids; }; QDebug operator<<(QDebug dbg, const ParamList ¶ms); #endif // PARAM_H