18 #ifndef OMG_DDS_CORE_TBUILTIN_TOPIC_TYPES_HPP_
19 #define OMG_DDS_CORE_TBUILTIN_TOPIC_TYPES_HPP_
22 #if defined (OMG_DDS_X_TYPES_BUILTIN_TOPIC_TYPES_SUPPORT)
32 class StringTopicType;
35 class KeyedBytesTopicType;
38 class KeyedStringTopicType;
43 class dds::core::BytesTopicType
47 BytesTopicType(
const std::vector<uint32_t>& data);
49 operator std::vector<uint32_t>& ();
51 const std::vector<uint8_t>& data();
52 void data(
const std::vector<uint8_t>& bytes);
56 class dds::core::StringTopicType
60 StringTopicType(
const std::string& data);
62 operator std::string& ();
64 const std::string& data();
65 void data(
const std::string& bytes);
75 class dds::core::KeyedStringTopicType
78 KeyedStringTopicType();
79 KeyedStringTopicType(
const std::string& key,
const std::string& value);
82 const std::string& key()
const;
83 void key(
const std::string& value);
85 const std::string& value()
const;
86 void value(
const std::string& value);
95 class dds::core::KeyedBytesTopicType
98 KeyedBytesTopicType();
99 KeyedBytesTopicType(
const std::string& key,
const std::vector<uint8_t>& bytes);
102 const std::string& key()
const;
103 void key(
const std::string& value);
105 const std::vector<uint8_t>& value()
const;
106 void value(
const std::vector<uint8_t>& value);