Cyclone ISO C++ API Reference Guide
dds::core::policy::TopicData Class Reference

More...

#include "CorePolicy.hpp"

Inherits dds::core::Value< D >.

Public Member Functions

 TopicData ()
 
 TopicData (const dds::core::ByteSeq &sequence)
 
 TopicData (const TopicData &other)
 
 TopicData (const uint8_t *value_begin, const uint8_t *value_end)
 
const uint8_t * begin () const
 
const uint8_t * end () const
 
bool operator!= (const Value &other) const
 
D * operator-> ()
 
const D * operator-> () const
 
bool operator== (const Value &other) const
 
const dds::core::ByteSeq value () const
 
TopicDatavalue (const dds::core::ByteSeq &sequence)
 
template<typename OCTET_ITER >
TopicDatavalue (OCTET_ITER begin, OCTET_ITER end)
 

Detailed Description

Definition at line 197 of file CorePolicy.hpp.

Constructor & Destructor Documentation

◆ TopicData() [1/4]

dds::core::policy::TopicData::TopicData ( )

Creates a TopicData QoS instance

◆ TopicData() [2/4]

dds::core::policy::TopicData::TopicData ( const dds::core::ByteSeq sequence)
explicit

Creates a TopicData QoS instance

Parameters
sequencethe sequence of octets representing the TopicData

◆ TopicData() [3/4]

dds::core::policy::TopicData::TopicData ( const TopicData other)

Copies a TopicData QoS instance

Parameters
otherthe TopicData QoS instance to copy

◆ TopicData() [4/4]

dds::core::policy::TopicData::TopicData ( const uint8_t *  value_begin,
const uint8_t *  value_end 
)

Creates a TopicData QoS instance

Parameters
value_begina pointer to the beginning of a sequence of octets
value_enda pointer to the end of a sequence of octets

Member Function Documentation

◆ begin()

const uint8_t* dds::core::policy::TopicData::begin ( ) const

Gets a pointer to the first octet in the sequence

Returns
a pointer to the first octet in the sequence

◆ end()

const uint8_t* dds::core::policy::TopicData::end ( ) const

Gets a pointer to the last octet in the sequence

Returns
a pointer to the last octet in the sequence

◆ operator!=()

template<typename D >
bool dds::core::Value< D >::operator!= ( const Value< D > &  other) const
inherited

Compare this Value with another Value

Parameters
otherValue
Returns
true if not equal

◆ operator->() [1/2]

template<typename D >
D* dds::core::Value< D >::operator-> ( )
inherited

The operator->() is provided to be able to directly invoke functions on the delegate.

The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Value and on all its subclasses as follows:

my_dds_value.standard_function();
my_dds_value->vendor_specific_extension();
Returns
a reference to delegate.

◆ operator->() [2/2]

template<typename D >
const D* dds::core::Value< D >::operator-> ( ) const
inherited

The operator->() is provided to be able to directly invoke functions on the delegate.

The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Value and on all its subclasses as follows:

my_dds_value.standard_function();
my_dds_value->vendor_specific_extension();
Returns
a reference to delegate.

◆ operator==()

template<typename D >
bool dds::core::Value< D >::operator== ( const Value< D > &  other) const
inherited

Compare this Value with another Value

Parameters
otherValue
Returns
true if equal

◆ value() [1/3]

const dds::core::ByteSeq dds::core::policy::TopicData::value ( ) const

Get the sequence

Returns
a sequence of octets

◆ value() [2/3]

TopicData& dds::core::policy::TopicData::value ( const dds::core::ByteSeq sequence)

Set the sequence

Parameters
sequencea sequence of octets

◆ value() [3/3]

template<typename OCTET_ITER >
TopicData& dds::core::policy::TopicData::value ( OCTET_ITER  begin,
OCTET_ITER  end 
)

Set the sequence

Parameters
beginan iterator pointing to the beginning of a sequence of octets
endan iterator pointing to the end of a sequence of octets

The documentation for this class was generated from the following file: