linphone-ios/src/object/property-container.h
2017-09-25 17:37:59 +02:00

50 lines
1.5 KiB
C++

/*
* property-container.h
* Copyright (C) 2017 Belledonne Communications SARL
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PROPERTY_CONTAINER_H_
#define _PROPERTY_CONTAINER_H_
#include "variant/variant.h"
// =============================================================================
LINPHONE_BEGIN_NAMESPACE
class PropertyContainerPrivate;
class LINPHONE_PUBLIC PropertyContainer {
public:
PropertyContainer ();
PropertyContainer (const PropertyContainer &src);
virtual ~PropertyContainer ();
PropertyContainer &operator= (const PropertyContainer &src);
Variant getProperty (const std::string &name) const;
void setProperty (const std::string &name, const Variant &value);
void setProperty (const std::string &name, Variant &&value);
private:
PropertyContainerPrivate *mPrivate = nullptr;
L_DECLARE_PRIVATE(PropertyContainer);
};
LINPHONE_END_NAMESPACE
#endif // ifndef _PROPERTY_CONTAINER_H_