Main MRPT website > C++ reference for MRPT 1.4.0
List of all members | Classes | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Attributes
mrpt::utils::CPropertiesValuesList Class Reference

Detailed Description

An arbitrary list of "annotations", or named attributes, each being an instance of any CSerializable object.

A multi-hypotheses version exists in CMHPropertiesValuesList.

See also
CSerializable, CMHPropertiesValuesList, mrpt::utils::TParameters

Definition at line 29 of file CPropertiesValuesList.h.

#include <mrpt/utils/CPropertiesValuesList.h>

Inheritance diagram for mrpt::utils::CPropertiesValuesList:
Inheritance graph

Classes

struct  TPropertyValuePair
 

Public Member Functions

void * operator new (size_t size)
 
void * operator new[] (size_t size)
 
void operator delete (void *ptr) throw ()
 
void operator delete[] (void *ptr) throw ()
 
void operator delete (void *memory, void *ptr) throw ()
 
void * operator new (size_t size, const std::nothrow_t &) throw ()
 
void operator delete (void *ptr, const std::nothrow_t &) throw ()
 
 CPropertiesValuesList ()
 Default constructor. More...
 
 CPropertiesValuesList (const CPropertiesValuesList &o)
 Copy constructor. More...
 
CPropertiesValuesListoperator= (const CPropertiesValuesList &o)
 Copy operator. More...
 
virtual ~CPropertiesValuesList ()
 Destructor. More...
 
void clear ()
 Clears the list. More...
 
CSerializablePtr get (const std::string &propertyName) const
 Returns the value of the property (case insensitive), or NULL if it does not exist. More...
 
void set (const std::string &propertyName, const CSerializablePtr &obj)
 Sets/change the value of the property (case insensitive), making a copy of the object (or setting it to NULL 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 mxArraywriteToMatlab () 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...
 
mrpt::utils::CObjectPtr duplicateGetSmartPtr () const
 Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer). More...
 
CObjectclone () const
 Cloning interface for smart pointers. More...
 

Static Public Member Functions

static void * operator new (size_t size, void *ptr)
 

Static Public Attributes

static const mrpt::utils::TRuntimeClassId classCObject
 
RTTI stuff <br>
static const mrpt::utils::TRuntimeClassId classCSerializable
 

Protected Member Functions

CSerializable virtual methods
void writeToStream (mrpt::utils::CStream &out, int *getVersion) const
 Introduces a pure virtual method responsible for writing to a CStream. More...
 
void readFromStream (mrpt::utils::CStream &in, int version)
 Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori. More...
 

Protected Attributes

std::vector< TPropertyValuePairm_properties
 The properties list: a map between strings and objects. More...
 

RTTI stuff <br>

typedef CPropertiesValuesListPtr SmartPtr
 
static mrpt::utils::CLASSINIT _init_CPropertiesValuesList
 
static mrpt::utils::TRuntimeClassId classCPropertiesValuesList
 
static const mrpt::utils::TRuntimeClassIdclassinfo
 
static const mrpt::utils::TRuntimeClassId_GetBaseClass ()
 
virtual const mrpt::utils::TRuntimeClassIdGetRuntimeClass () const
 Returns information about the class of an object in runtime. More...
 
virtual mrpt::utils::CObjectduplicate () const
 Returns a copy of the object, indepently of its class. More...
 
static mrpt::utils::CObjectCreateObject ()
 
static CPropertiesValuesListPtr Create ()
 

Member Typedef Documentation

◆ SmartPtr

typedef CPropertiesValuesListPtr mrpt::utils::CPropertiesValuesList::SmartPtr

A typedef for the associated smart pointer

Definition at line 32 of file CPropertiesValuesList.h.

Constructor & Destructor Documentation

◆ CPropertiesValuesList() [1/2]

mrpt::utils::CPropertiesValuesList::CPropertiesValuesList ( )

Default constructor.

◆ CPropertiesValuesList() [2/2]

mrpt::utils::CPropertiesValuesList::CPropertiesValuesList ( const CPropertiesValuesList o)

Copy constructor.

◆ ~CPropertiesValuesList()

virtual mrpt::utils::CPropertiesValuesList::~CPropertiesValuesList ( )
virtual

Destructor.

Member Function Documentation

◆ _GetBaseClass()

static const mrpt::utils::TRuntimeClassId * mrpt::utils::CPropertiesValuesList::_GetBaseClass ( )
staticprotected

◆ clear()

void mrpt::utils::CPropertiesValuesList::clear ( )

Clears the list.

◆ clone()

CObject * mrpt::utils::CObject::clone ( ) const
inlineinherited

Cloning interface for smart pointers.

Definition at line 139 of file CObject.h.

◆ Create()

static CPropertiesValuesListPtr mrpt::utils::CPropertiesValuesList::Create ( )
static

◆ CreateObject()

static mrpt::utils::CObject * mrpt::utils::CPropertiesValuesList::CreateObject ( )
static

◆ duplicate()

virtual mrpt::utils::CObject * mrpt::utils::CPropertiesValuesList::duplicate ( ) const
virtual

Returns a copy of the object, indepently of its class.

Implements mrpt::utils::CObject.

◆ duplicateGetSmartPtr()

mrpt::utils::CObjectPtr mrpt::utils::CObject::duplicateGetSmartPtr ( ) const
inlineinherited

Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer).

Definition at line 136 of file CObject.h.

◆ get()

CSerializablePtr mrpt::utils::CPropertiesValuesList::get ( const std::string &  propertyName) const

Returns the value of the property (case insensitive), or NULL if it does not exist.

◆ getPropertyNames()

std::vector< std::string > mrpt::utils::CPropertiesValuesList::getPropertyNames ( ) const

Returns the name of all properties in the list.

◆ GetRuntimeClass()

virtual const mrpt::utils::TRuntimeClassId * mrpt::utils::CPropertiesValuesList::GetRuntimeClass ( ) const
virtual

Returns information about the class of an object in runtime.

Reimplemented from mrpt::utils::CSerializable.

◆ operator delete() [1/3]

void mrpt::utils::CPropertiesValuesList::operator delete ( void *  memory,
void *  ptr 
)
throw (
)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator delete() [2/3]

void mrpt::utils::CPropertiesValuesList::operator delete ( void *  ptr)
throw (
)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator delete() [3/3]

void mrpt::utils::CPropertiesValuesList::operator delete ( void *  ptr,
const std::nothrow_t &   
)
throw (
)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator delete[]()

void mrpt::utils::CPropertiesValuesList::operator delete[] ( void *  ptr)
throw (
)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator new() [1/3]

void * mrpt::utils::CPropertiesValuesList::operator new ( size_t  size)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator new() [2/3]

void * mrpt::utils::CPropertiesValuesList::operator new ( size_t  size,
const std::nothrow_t &   
)
throw (
)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator new() [3/3]

static void * mrpt::utils::CPropertiesValuesList::operator new ( size_t  size,
void *  ptr 
)
inlinestatic

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator new[]()

void * mrpt::utils::CPropertiesValuesList::operator new[] ( size_t  size)
inline

Definition at line 32 of file CPropertiesValuesList.h.

◆ operator=()

CPropertiesValuesList & mrpt::utils::CPropertiesValuesList::operator= ( const CPropertiesValuesList o)

Copy operator.

◆ readFromStream()

void mrpt::utils::CPropertiesValuesList::readFromStream ( mrpt::utils::CStream in,
int  version 
)
protectedvirtual

Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori.

Parameters
inThe input binary stream where the object data must read from.
versionThe version of the object stored in the stream: use this version number in your code to know how to read the incoming data.
Exceptions
std::exceptionOn any error, see CStream::ReadBuffer
See also
CStream

Implements mrpt::utils::CSerializable.

◆ set()

void mrpt::utils::CPropertiesValuesList::set ( const std::string &  propertyName,
const CSerializablePtr &  obj 
)

Sets/change the value of the property (case insensitive), making a copy of the object (or setting it to NULL if it is the passed value)

◆ size()

size_t mrpt::utils::CPropertiesValuesList::size ( ) const

Returns the number of properties in the list.

◆ writeToMatlab()

virtual mxArray * mrpt::utils::CSerializable::writeToMatlab ( ) const
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.

Returns
A new mxArray (caller is responsible of memory freeing) or NULL is class does not support conversion to MATLAB.

Definition at line 79 of file CSerializable.h.

◆ writeToStream()

void mrpt::utils::CPropertiesValuesList::writeToStream ( mrpt::utils::CStream out,
int *  getVersion 
) const
protectedvirtual

Introduces a pure virtual method responsible for writing to a CStream.

This can not be used directly be users, instead use "stream << object;" for writing it to a stream.

Parameters
outThe output binary stream where object must be dumped.
getVersionIf NULL, the object must be dumped. If not, only the version of the object dump must be returned in this pointer. This enables the versioning of objects dumping and backward compatibility with previously stored data.
Exceptions
std::exceptionOn any error, see CStream::WriteBuffer
See also
CStream

Implements mrpt::utils::CSerializable.

Member Data Documentation

◆ _init_CPropertiesValuesList

mrpt::utils::CLASSINIT mrpt::utils::CPropertiesValuesList::_init_CPropertiesValuesList
staticprotected

Definition at line 32 of file CPropertiesValuesList.h.

◆ classCObject

const mrpt::utils::TRuntimeClassId mrpt::utils::CObject::classCObject
staticinherited

Definition at line 124 of file CObject.h.

◆ classCPropertiesValuesList

mrpt::utils::TRuntimeClassId mrpt::utils::CPropertiesValuesList::classCPropertiesValuesList
static

Definition at line 32 of file CPropertiesValuesList.h.

◆ classCSerializable

const mrpt::utils::TRuntimeClassId mrpt::utils::CSerializable::classCSerializable
staticinherited

Definition at line 42 of file CSerializable.h.

◆ classinfo

const mrpt::utils::TRuntimeClassId* mrpt::utils::CPropertiesValuesList::classinfo
static

Definition at line 32 of file CPropertiesValuesList.h.

◆ m_properties

std::vector<TPropertyValuePair> mrpt::utils::CPropertiesValuesList::m_properties
protected

The properties list: a map between strings and objects.

Definition at line 41 of file CPropertiesValuesList.h.




Page generated by Doxygen 1.9.4 for MRPT 1.4.0 SVN: at Sun Aug 14 11:34:44 UTC 2022