$search
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-electric-common_msgs/doc_stacks/2013-03-01_14-58-52.505545/common_msgs/diagnostic_msgs/msg/KeyValue.msg */ 00002 #ifndef DIAGNOSTIC_MSGS_MESSAGE_KEYVALUE_H 00003 #define DIAGNOSTIC_MSGS_MESSAGE_KEYVALUE_H 00004 #include <string> 00005 #include <vector> 00006 #include <map> 00007 #include <ostream> 00008 #include "ros/serialization.h" 00009 #include "ros/builtin_message_traits.h" 00010 #include "ros/message_operations.h" 00011 #include "ros/time.h" 00012 00013 #include "ros/macros.h" 00014 00015 #include "ros/assert.h" 00016 00017 00018 namespace diagnostic_msgs 00019 { 00020 template <class ContainerAllocator> 00021 struct KeyValue_ { 00022 typedef KeyValue_<ContainerAllocator> Type; 00023 00024 KeyValue_() 00025 : key() 00026 , value() 00027 { 00028 } 00029 00030 KeyValue_(const ContainerAllocator& _alloc) 00031 : key(_alloc) 00032 , value(_alloc) 00033 { 00034 } 00035 00036 typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _key_type; 00037 std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > key; 00038 00039 typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _value_type; 00040 std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > value; 00041 00042 00043 private: 00044 static const char* __s_getDataType_() { return "diagnostic_msgs/KeyValue"; } 00045 public: 00046 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); } 00047 00048 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); } 00049 00050 private: 00051 static const char* __s_getMD5Sum_() { return "cf57fdc6617a881a88c16e768132149c"; } 00052 public: 00053 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); } 00054 00055 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); } 00056 00057 private: 00058 static const char* __s_getMessageDefinition_() { return "string key # what to label this value when viewing\n\ 00059 string value # a value to track over time\n\ 00060 \n\ 00061 "; } 00062 public: 00063 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); } 00064 00065 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); } 00066 00067 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const 00068 { 00069 ros::serialization::OStream stream(write_ptr, 1000000000); 00070 ros::serialization::serialize(stream, key); 00071 ros::serialization::serialize(stream, value); 00072 return stream.getData(); 00073 } 00074 00075 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr) 00076 { 00077 ros::serialization::IStream stream(read_ptr, 1000000000); 00078 ros::serialization::deserialize(stream, key); 00079 ros::serialization::deserialize(stream, value); 00080 return stream.getData(); 00081 } 00082 00083 ROS_DEPRECATED virtual uint32_t serializationLength() const 00084 { 00085 uint32_t size = 0; 00086 size += ros::serialization::serializationLength(key); 00087 size += ros::serialization::serializationLength(value); 00088 return size; 00089 } 00090 00091 typedef boost::shared_ptr< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > Ptr; 00092 typedef boost::shared_ptr< ::diagnostic_msgs::KeyValue_<ContainerAllocator> const> ConstPtr; 00093 boost::shared_ptr<std::map<std::string, std::string> > __connection_header; 00094 }; // struct KeyValue 00095 typedef ::diagnostic_msgs::KeyValue_<std::allocator<void> > KeyValue; 00096 00097 typedef boost::shared_ptr< ::diagnostic_msgs::KeyValue> KeyValuePtr; 00098 typedef boost::shared_ptr< ::diagnostic_msgs::KeyValue const> KeyValueConstPtr; 00099 00100 00101 template<typename ContainerAllocator> 00102 std::ostream& operator<<(std::ostream& s, const ::diagnostic_msgs::KeyValue_<ContainerAllocator> & v) 00103 { 00104 ros::message_operations::Printer< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >::stream(s, "", v); 00105 return s;} 00106 00107 } // namespace diagnostic_msgs 00108 00109 namespace ros 00110 { 00111 namespace message_traits 00112 { 00113 template<class ContainerAllocator> struct IsMessage< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > : public TrueType {}; 00114 template<class ContainerAllocator> struct IsMessage< ::diagnostic_msgs::KeyValue_<ContainerAllocator> const> : public TrueType {}; 00115 template<class ContainerAllocator> 00116 struct MD5Sum< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > { 00117 static const char* value() 00118 { 00119 return "cf57fdc6617a881a88c16e768132149c"; 00120 } 00121 00122 static const char* value(const ::diagnostic_msgs::KeyValue_<ContainerAllocator> &) { return value(); } 00123 static const uint64_t static_value1 = 0xcf57fdc6617a881aULL; 00124 static const uint64_t static_value2 = 0x88c16e768132149cULL; 00125 }; 00126 00127 template<class ContainerAllocator> 00128 struct DataType< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > { 00129 static const char* value() 00130 { 00131 return "diagnostic_msgs/KeyValue"; 00132 } 00133 00134 static const char* value(const ::diagnostic_msgs::KeyValue_<ContainerAllocator> &) { return value(); } 00135 }; 00136 00137 template<class ContainerAllocator> 00138 struct Definition< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > { 00139 static const char* value() 00140 { 00141 return "string key # what to label this value when viewing\n\ 00142 string value # a value to track over time\n\ 00143 \n\ 00144 "; 00145 } 00146 00147 static const char* value(const ::diagnostic_msgs::KeyValue_<ContainerAllocator> &) { return value(); } 00148 }; 00149 00150 } // namespace message_traits 00151 } // namespace ros 00152 00153 namespace ros 00154 { 00155 namespace serialization 00156 { 00157 00158 template<class ContainerAllocator> struct Serializer< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > 00159 { 00160 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) 00161 { 00162 stream.next(m.key); 00163 stream.next(m.value); 00164 } 00165 00166 ROS_DECLARE_ALLINONE_SERIALIZER; 00167 }; // struct KeyValue_ 00168 } // namespace serialization 00169 } // namespace ros 00170 00171 namespace ros 00172 { 00173 namespace message_operations 00174 { 00175 00176 template<class ContainerAllocator> 00177 struct Printer< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > 00178 { 00179 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::diagnostic_msgs::KeyValue_<ContainerAllocator> & v) 00180 { 00181 s << indent << "key: "; 00182 Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.key); 00183 s << indent << "value: "; 00184 Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.value); 00185 } 00186 }; 00187 00188 00189 } // namespace message_operations 00190 } // namespace ros 00191 00192 #endif // DIAGNOSTIC_MSGS_MESSAGE_KEYVALUE_H 00193