MRPT
2.0.1
|
An arbitrary list of "annotations", or named attributes, each being an instance of any CSerializable object.
A multi-hypotheses version exists in CMHPropertiesValuesList.
Definition at line 21 of file CPropertiesValuesList.h.
#include <mrpt/hmtslam/CPropertiesValuesList.h>
Classes | |
struct | TPropertyValuePair |
Public Member Functions | |
CPropertiesValuesList () | |
Default constructor. More... | |
CPropertiesValuesList (const CPropertiesValuesList &o) | |
Copy constructor. More... | |
CPropertiesValuesList & | operator= (const CPropertiesValuesList &o) |
Copy operator. More... | |
~CPropertiesValuesList () override | |
Destructor. More... | |
void | clear () |
Clears the list. More... | |
CSerializable::Ptr | get (const std::string &propertyName) const |
Returns the value of the property (case insensitive), or nullptr if it does not exist. More... | |
void | set (const std::string &propertyName, const CSerializable::Ptr &obj) |
Sets/change the value of the property (case insensitive), making a copy of the object (or setting it to nullptr if it is the passed value) More... | |
size_t | size () const |
Returns the number of properties in the list. More... | |
std::vector< std::string > | getPropertyNames () const |
Returns the name of all properties in the list. More... | |
virtual mxArray * | writeToMatlab () const |
Introduces a pure virtual method responsible for writing to a mxArray Matlab object, typically a MATLAB struct whose contents are documented in each derived class. More... | |
RTTI classes and functions for polymorphic hierarchies | |
mrpt::rtti::CObject::Ptr | duplicateGetSmartPtr () const |
Makes a deep copy of the object and returns a smart pointer to it. More... | |
Protected Member Functions | |
CSerializable virtual methods | |
uint8_t | serializeGetVersion () const override |
Must return the current versioning number of the object. More... | |
void | serializeTo (mrpt::serialization::CArchive &out) const override |
Pure virtual method for writing (serializing) to an abstract archive. More... | |
void | serializeFrom (mrpt::serialization::CArchive &in, uint8_t serial_version) override |
Pure virtual method for reading (deserializing) from an abstract archive. More... | |
CSerializable virtual methods | |
virtual void | serializeTo (CSchemeArchiveBase &out) const |
Virtual method for writing (serializing) to an abstract schema based archive. More... | |
virtual void | serializeFrom (CSchemeArchiveBase &in) |
Virtual method for reading (deserializing) from an abstract schema based archive. More... | |
Protected Attributes | |
std::vector< TPropertyValuePair > | m_properties |
The properties list: a map between strings and objects. More... | |
RTTI stuff | |
using | Ptr = std::shared_ptr< mrpt::hmtslam ::CPropertiesValuesList > |
using | ConstPtr = std::shared_ptr< const mrpt::hmtslam ::CPropertiesValuesList > |
using | UniquePtr = std::unique_ptr< mrpt::hmtslam ::CPropertiesValuesList > |
using | ConstUniquePtr = std::unique_ptr< const mrpt::hmtslam ::CPropertiesValuesList > |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "mrpt::hmtslam" "::" "CPropertiesValuesList" |
static const mrpt::rtti::TRuntimeClassId * | _GetBaseClass () |
static constexpr auto | getClassName () |
static const mrpt::rtti::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static std::shared_ptr< CObject > | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
template<typename Alloc , typename... Args> | |
static Ptr | CreateAlloc (const Alloc &alloc, Args &&... args) |
template<typename... Args> | |
static UniquePtr | CreateUnique (Args &&... args) |
virtual const mrpt::rtti::TRuntimeClassId * | GetRuntimeClass () const override |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::rtti::CObject * | clone () const override |
Returns a deep copy (clone) of the object, indepently of its class. More... | |
using mrpt::hmtslam::CPropertiesValuesList::ConstPtr = std::shared_ptr<const mrpt::hmtslam :: CPropertiesValuesList > |
Definition at line 23 of file CPropertiesValuesList.h.
using mrpt::hmtslam::CPropertiesValuesList::ConstUniquePtr = std::unique_ptr<const mrpt::hmtslam :: CPropertiesValuesList > |
Definition at line 23 of file CPropertiesValuesList.h.
using mrpt::hmtslam::CPropertiesValuesList::Ptr = std::shared_ptr< mrpt::hmtslam :: CPropertiesValuesList > |
A type for the associated smart pointer
Definition at line 23 of file CPropertiesValuesList.h.
using mrpt::hmtslam::CPropertiesValuesList::UniquePtr = std::unique_ptr< mrpt::hmtslam :: CPropertiesValuesList > |
Definition at line 23 of file CPropertiesValuesList.h.
|
default |
Default constructor.
CPropertiesValuesList::CPropertiesValuesList | ( | const CPropertiesValuesList & | o | ) |
|
override |
Destructor.
Definition at line 90 of file CPropertiesValuesList.cpp.
References mrpt::containers::clear().
|
staticprotected |
void CPropertiesValuesList::clear | ( | ) |
Clears the list.
Definition at line 120 of file CPropertiesValuesList.cpp.
References m_properties, MRPT_END, and MRPT_START.
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
inlinestatic |
Definition at line 23 of file CPropertiesValuesList.h.
|
inlinestatic |
Definition at line 23 of file CPropertiesValuesList.h.
|
static |
|
inlinestatic |
Definition at line 23 of file CPropertiesValuesList.h.
|
inlineinherited |
Makes a deep copy of the object and returns a smart pointer to it.
Definition at line 204 of file CObject.h.
References mrpt::rtti::CObject::clone().
Referenced by mrpt::obs::CRawlog::insert().
CSerializable::Ptr CPropertiesValuesList::get | ( | const std::string & | propertyName | ) | const |
Returns the value of the property (case insensitive), or nullptr if it does not exist.
Definition at line 130 of file CPropertiesValuesList.cpp.
References mrpt::system::os::_strcmpi(), and m_properties.
|
inlinestatic |
Definition at line 23 of file CPropertiesValuesList.h.
std::vector< std::string > CPropertiesValuesList::getPropertyNames | ( | ) | const |
Returns the name of all properties in the list.
Definition at line 182 of file CPropertiesValuesList.cpp.
References m_properties.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::serialization::CSerializable.
|
static |
CPropertiesValuesList & CPropertiesValuesList::operator= | ( | const CPropertiesValuesList & | o | ) |
|
overrideprotectedvirtual |
Pure virtual method for reading (deserializing) from an abstract archive.
Users don't call this method directly. Instead, use stream >> object;
.
in | The input binary stream where the object data must read from. |
version | The version of the object stored in the stream: use this version number in your code to know how to read the incoming data. |
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 46 of file CPropertiesValuesList.cpp.
References mrpt::containers::clear(), and MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION.
|
inlineprotectedvirtualinherited |
Virtual method for reading (deserializing) from an abstract schema based archive.
Definition at line 74 of file CSerializable.h.
References mrpt::serialization::CSerializable::GetRuntimeClass(), and THROW_EXCEPTION.
|
overrideprotectedvirtual |
Must return the current versioning number of the object.
Start in zero for new classes, and increments each time there is a change in the stored format.
Implements mrpt::serialization::CSerializable.
Definition at line 25 of file CPropertiesValuesList.cpp.
|
overrideprotectedvirtual |
Pure virtual method for writing (serializing) to an abstract archive.
Users don't call this method directly. Instead, use stream << object;
.
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 26 of file CPropertiesValuesList.cpp.
References out, and mrpt::math::size().
|
inlineprotectedvirtualinherited |
Virtual method for writing (serializing) to an abstract schema based archive.
Definition at line 64 of file CSerializable.h.
References mrpt::serialization::CSerializable::GetRuntimeClass(), and THROW_EXCEPTION.
void CPropertiesValuesList::set | ( | const std::string & | propertyName, |
const CSerializable::Ptr & | obj | ||
) |
Sets/change the value of the property (case insensitive), making a copy of the object (or setting it to nullptr if it is the passed value)
Definition at line 145 of file CPropertiesValuesList.cpp.
References mrpt::system::os::_strcmpi(), m_properties, MRPT_END_WITH_CLEAN_UP, MRPT_START, mrpt::hmtslam::CPropertiesValuesList::TPropertyValuePair::name, and mrpt::hmtslam::CPropertiesValuesList::TPropertyValuePair::value.
size_t CPropertiesValuesList::size | ( | ) | const |
Returns the number of properties in the list.
Definition at line 178 of file CPropertiesValuesList.cpp.
References m_properties.
|
inlinevirtualinherited |
Introduces a pure virtual method responsible for writing to a mxArray
Matlab object, typically a MATLAB struct
whose contents are documented in each derived class.
mxArray
(caller is responsible of memory freeing) or nullptr is class does not support conversion to MATLAB. Definition at line 90 of file CSerializable.h.
|
static |
Definition at line 23 of file CPropertiesValuesList.h.
|
protected |
The properties list: a map between strings and objects.
Definition at line 32 of file CPropertiesValuesList.h.
Referenced by clear(), CPropertiesValuesList(), get(), getPropertyNames(), operator=(), set(), and size().
|
staticprotected |
Definition at line 23 of file CPropertiesValuesList.h.
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |