Go to the documentation of this file.00001 #ifndef OMG_TDDS_XYPES_BUILTIN_TYPES_HPP_
00002 #define OMG_TDDS_XYPES_BUILTIN_TYPES_HPP_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <string>
00024
00025 #include <dds/core/corefwd.hpp>
00026 #include <dds/core/Value.hpp>
00027 #include <tdds/xtypes/tdds_xtypes_fwd.hpp>
00028
00029
00030 #ifdef OMG_DDS_EXTENSIBLE_AND_DYNAMIC_TOPIC_TYPE_SUPPORT
00031
00032
00033
00034
00035 template <typename DELEGATE>
00036 class tdds::type::builtin::KeyedString : public dds::core::Value<DELEGATE> {
00037 public:
00038 KeyedString(const std::string& key, const std::string& value);
00039
00040 public:
00041 const std::string key() const;
00042 void key(const std::string& value);
00043
00044 const std::string value() const;
00045 void value(const std::string& value);
00046 };
00047
00048
00049
00050
00051 template <typename DELEGATE>
00052 class tdds::type::builtin::KeyedBytes : public dds::core::Value<DELEGATE> {
00053
00054 public:
00055 template <typename RNDA_ITER>
00056 KeyedBytes(const std::string& key,
00057 RNDA_ITER value_begin,
00058 RNDA_ITER value_end);
00059
00060 public:
00061 const std::string key() const;
00062 void key(const std::string& value);
00063
00064 uint8_t* value_begin();
00065 uint8_t* value_end();
00066 };
00067
00068
00069 #endif // defined(OMG_DDS_EXTENSIBLE_AND_DYNAMIC_TOPIC_TYPE_SUPPORT)
00070
00071
00072 #endif // !defined(OMG_TDDS_XYPES_BUILTIN_TYPES_HPP_)