|
cisst-saw
|
#include <mtsGenericObjectProxy.h>
Public Types | |
| typedef mtsGenericObjectProxy< _elementType > | ThisType |
| typedef mtsGenericObjectProxyBase< _elementType > | BaseType |
| typedef mtsGenericObjectProxyBase< _elementType >::value_type | value_type |
| typedef mtsGenericObjectProxyBase< _elementType >::DeRefType | DeRefType |
| typedef mtsGenericObjectProxyBase< _elementType >::RefType | RefType |
| Public Types inherited from mtsGenericObjectProxyBase< _elementType > | |
| enum | { HAS_DYNAMIC_CREATION = true } |
| enum | { InitialLoD = CMN_LOG_ALLOW_DEFAULT } |
| typedef mtsGenericObjectProxyBase< _elementType > | ThisType |
| typedef mtsGenericObject | BaseType |
| typedef mtsGenericObjectProxy< _elementType > | DeRefType |
| typedef mtsGenericObjectProxyRef< _elementType > | RefType |
| typedef _elementType | value_type |
Public Member Functions | |
| mtsGenericObjectProxy (void) | |
| mtsGenericObjectProxy (const ThisType &other) | |
| mtsGenericObjectProxy (const value_type &data) | |
| ~mtsGenericObjectProxy (void) | |
| ThisType & | operator= (const ThisType &other) |
| value_type & | GetData (void) override |
| const value_type & | GetData (void) const override |
| ThisType & | operator= (const BaseType &data) |
| ThisType & | operator= (value_type data) |
| operator value_type & (void) | |
| operator const value_type & (void) const | |
| void | SerializeRaw (std::ostream &outputStream) const override |
| void | DeSerializeRaw (std::istream &inputStream) override |
| void | ToStream (std::ostream &outputStream) const override |
| void | ToStreamRaw (std::ostream &outputStream, const char delimiter=' ', bool headerOnly=false, const std::string &headerPrefix="") const override |
| bool | FromStreamRaw (std::istream &inputStream, const char delimiter=' ') override |
| Public Member Functions inherited from mtsGenericObjectProxyBase< _elementType > | |
| virtual const cmnClassServicesBase * | Services (void) const |
| mtsGenericObjectProxyBase (void) | |
| mtsGenericObjectProxyBase (const ThisType &other) | |
| ~mtsGenericObjectProxyBase (void) | |
| ThisType & | operator= (const ThisType &data) |
| virtual void | Assign (const ThisType &other) |
| Public Member Functions inherited from mtsGenericObject | |
| mtsGenericObject (void) | |
| mtsGenericObject (double timestamp, bool automaticTimestamp, bool valid) | |
| mtsGenericObject (const mtsGenericObject &other) | |
| virtual | ~mtsGenericObject (void) |
| mtsGenericObject & | operator= (const mtsGenericObject &other) |
| bool | SetTimestampIfAutomatic (double timestamp) |
| size_t | ScalarNumber (void) const |
| bool | ScalarNumberIsFixed (void) const |
| Public Member Functions inherited from cmnGenericObject | |
| virtual | ~cmnGenericObject (void) |
| bool | ReconstructFrom (const cmnGenericObject &other) |
| std::string | ToString (void) const |
| virtual cmnLogger::StreamBufType * | GetLogMultiplexer (void) const |
| virtual double | Scalar (const size_t CMN_UNUSED(index)) const CISST_THROW(std |
| virtual std::string | ScalarDescription (const size_t CMN_UNUSED(index), const std::string &CMN_UNUSED(userDescription)) const |
Public Attributes | |
| value_type | Data |
Additional Inherited Members | |
| Static Public Member Functions inherited from mtsGenericObjectProxyBase< _elementType > | |
| static cmnClassServicesBase * | ClassServices (void) |
| typedef mtsGenericObjectProxyBase<_elementType> mtsGenericObjectProxy< _elementType >::BaseType |
| typedef mtsGenericObjectProxyBase<_elementType>::DeRefType mtsGenericObjectProxy< _elementType >::DeRefType |
| typedef mtsGenericObjectProxyBase<_elementType>::RefType mtsGenericObjectProxy< _elementType >::RefType |
| typedef mtsGenericObjectProxy<_elementType> mtsGenericObjectProxy< _elementType >::ThisType |
| typedef mtsGenericObjectProxyBase<_elementType>::value_type mtsGenericObjectProxy< _elementType >::value_type |
|
inline |
Default constructor. The data member is initialized using its default constructor.
|
inline |
Copy constructor.
|
inline |
Conversion constructor. This allows to construct the proxy object using an object of the actual type. This method will set the Valid flag to true.
|
inline |
|
inlineoverridevirtual |
DeSerialization. Relies on the specialization, if any, of cmnDeSerializeRaw.
Reimplemented from mtsGenericObject.
|
inlineoverridevirtual |
From stream raw.
Reimplemented from mtsGenericObject.
|
inlineoverridevirtual |
Implements mtsGenericObjectProxyBase< _elementType >.
|
inlineoverridevirtual |
Return pointer to data
Implements mtsGenericObjectProxyBase< _elementType >.
|
inline |
|
inline |
Cast operator. This allows to assign to an object of the actual type without explicitly referencing the public data member "Data".
|
inline |
Conversion assignment, from base type (i.e., Proxy or ProxyRef) to Proxy.
|
inline |
Assignment operator
|
inline |
Conversion assignment. This allows to assign from an object of the actual type without explicitly referencing the public data member "Data".
|
inlineoverridevirtual |
Serialization. Relies on the specialization, if any, of cmnSerializeRaw.
Reimplemented from mtsGenericObject.
|
inlineoverridevirtual |
To stream method. Uses the default << operator as defined for the actual type.
Reimplemented from mtsGenericObject.
|
inlineoverridevirtual |
To stream raw data.
Reimplemented from mtsGenericObject.
| value_type mtsGenericObjectProxy< _elementType >::Data |