RTI Connext Modern C++ API
Version 5.3.1
|
Unique identifier for a written data sample in the form of a sequence of bytes. More...
#include <rti/core/Cookie.hpp>
Public Member Functions | |
Cookie () | |
Creates an empty cookie. | |
template<typename ByteContainer > | |
Cookie (const ByteContainer &bytes) | |
Creates a new cookie with the bytes inside a container. | |
dds::core::vector< uint8_t > & | value () |
Retrieves a reference to the vector of bytes. | |
const dds::core::vector < uint8_t > & | value () const |
Retrieves a const reference to the vector of bytes. | |
Related Functions | |
(Note that these are not member functions.) | |
typedef dds::core::vector< Cookie > | CookieSeq |
A sequence of Cookie objects. | |
std::ostream & | operator<< (std::ostream &out, const Cookie &cookie) |
Prints a Cookie to an output stream. | |
Unique identifier for a written data sample in the form of a sequence of bytes.
|
inline |
Creates an empty cookie.
|
inlineexplicit |
Creates a new cookie with the bytes inside a container.
dds::core::vector<uint8_t>& rti::core::Cookie::value | ( | ) |
Retrieves a reference to the vector of bytes.
const dds::core::vector<uint8_t>& rti::core::Cookie::value | ( | ) | const |
Retrieves a const reference to the vector of bytes.
|
related |
A sequence of Cookie objects.