00001
00002 #ifndef STD_MSGS_MESSAGE_COLORRGBA_H
00003 #define STD_MSGS_MESSAGE_COLORRGBA_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 std_msgs
00019 {
00020 template <class ContainerAllocator>
00021 struct ColorRGBA_ {
00022 typedef ColorRGBA_<ContainerAllocator> Type;
00023
00024 ColorRGBA_()
00025 : r(0.0)
00026 , g(0.0)
00027 , b(0.0)
00028 , a(0.0)
00029 {
00030 }
00031
00032 ColorRGBA_(const ContainerAllocator& _alloc)
00033 : r(0.0)
00034 , g(0.0)
00035 , b(0.0)
00036 , a(0.0)
00037 {
00038 }
00039
00040 typedef float _r_type;
00041 float r;
00042
00043 typedef float _g_type;
00044 float g;
00045
00046 typedef float _b_type;
00047 float b;
00048
00049 typedef float _a_type;
00050 float a;
00051
00052
00053 private:
00054 static const char* __s_getDataType_() { return "std_msgs/ColorRGBA"; }
00055 public:
00056 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); }
00057
00058 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); }
00059
00060 private:
00061 static const char* __s_getMD5Sum_() { return "a29a96539573343b1310c73607334b00"; }
00062 public:
00063 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); }
00064
00065 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); }
00066
00067 private:
00068 static const char* __s_getMessageDefinition_() { return "float32 r\n\
00069 float32 g\n\
00070 float32 b\n\
00071 float32 a\n\
00072 \n\
00073 "; }
00074 public:
00075 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00076
00077 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00078
00079 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00080 {
00081 ros::serialization::OStream stream(write_ptr, 1000000000);
00082 ros::serialization::serialize(stream, r);
00083 ros::serialization::serialize(stream, g);
00084 ros::serialization::serialize(stream, b);
00085 ros::serialization::serialize(stream, a);
00086 return stream.getData();
00087 }
00088
00089 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00090 {
00091 ros::serialization::IStream stream(read_ptr, 1000000000);
00092 ros::serialization::deserialize(stream, r);
00093 ros::serialization::deserialize(stream, g);
00094 ros::serialization::deserialize(stream, b);
00095 ros::serialization::deserialize(stream, a);
00096 return stream.getData();
00097 }
00098
00099 ROS_DEPRECATED virtual uint32_t serializationLength() const
00100 {
00101 uint32_t size = 0;
00102 size += ros::serialization::serializationLength(r);
00103 size += ros::serialization::serializationLength(g);
00104 size += ros::serialization::serializationLength(b);
00105 size += ros::serialization::serializationLength(a);
00106 return size;
00107 }
00108
00109 typedef boost::shared_ptr< ::std_msgs::ColorRGBA_<ContainerAllocator> > Ptr;
00110 typedef boost::shared_ptr< ::std_msgs::ColorRGBA_<ContainerAllocator> const> ConstPtr;
00111 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00112 };
00113 typedef ::std_msgs::ColorRGBA_<std::allocator<void> > ColorRGBA;
00114
00115 typedef boost::shared_ptr< ::std_msgs::ColorRGBA> ColorRGBAPtr;
00116 typedef boost::shared_ptr< ::std_msgs::ColorRGBA const> ColorRGBAConstPtr;
00117
00118
00119 template<typename ContainerAllocator>
00120 std::ostream& operator<<(std::ostream& s, const ::std_msgs::ColorRGBA_<ContainerAllocator> & v)
00121 {
00122 ros::message_operations::Printer< ::std_msgs::ColorRGBA_<ContainerAllocator> >::stream(s, "", v);
00123 return s;}
00124
00125 }
00126
00127 namespace ros
00128 {
00129 namespace message_traits
00130 {
00131 template<class ContainerAllocator> struct IsMessage< ::std_msgs::ColorRGBA_<ContainerAllocator> > : public TrueType {};
00132 template<class ContainerAllocator> struct IsMessage< ::std_msgs::ColorRGBA_<ContainerAllocator> const> : public TrueType {};
00133 template<class ContainerAllocator>
00134 struct MD5Sum< ::std_msgs::ColorRGBA_<ContainerAllocator> > {
00135 static const char* value()
00136 {
00137 return "a29a96539573343b1310c73607334b00";
00138 }
00139
00140 static const char* value(const ::std_msgs::ColorRGBA_<ContainerAllocator> &) { return value(); }
00141 static const uint64_t static_value1 = 0xa29a96539573343bULL;
00142 static const uint64_t static_value2 = 0x1310c73607334b00ULL;
00143 };
00144
00145 template<class ContainerAllocator>
00146 struct DataType< ::std_msgs::ColorRGBA_<ContainerAllocator> > {
00147 static const char* value()
00148 {
00149 return "std_msgs/ColorRGBA";
00150 }
00151
00152 static const char* value(const ::std_msgs::ColorRGBA_<ContainerAllocator> &) { return value(); }
00153 };
00154
00155 template<class ContainerAllocator>
00156 struct Definition< ::std_msgs::ColorRGBA_<ContainerAllocator> > {
00157 static const char* value()
00158 {
00159 return "float32 r\n\
00160 float32 g\n\
00161 float32 b\n\
00162 float32 a\n\
00163 \n\
00164 ";
00165 }
00166
00167 static const char* value(const ::std_msgs::ColorRGBA_<ContainerAllocator> &) { return value(); }
00168 };
00169
00170 template<class ContainerAllocator> struct IsFixedSize< ::std_msgs::ColorRGBA_<ContainerAllocator> > : public TrueType {};
00171 }
00172 }
00173
00174 namespace ros
00175 {
00176 namespace serialization
00177 {
00178
00179 template<class ContainerAllocator> struct Serializer< ::std_msgs::ColorRGBA_<ContainerAllocator> >
00180 {
00181 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00182 {
00183 stream.next(m.r);
00184 stream.next(m.g);
00185 stream.next(m.b);
00186 stream.next(m.a);
00187 }
00188
00189 ROS_DECLARE_ALLINONE_SERIALIZER;
00190 };
00191 }
00192 }
00193
00194 namespace ros
00195 {
00196 namespace message_operations
00197 {
00198
00199 template<class ContainerAllocator>
00200 struct Printer< ::std_msgs::ColorRGBA_<ContainerAllocator> >
00201 {
00202 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::std_msgs::ColorRGBA_<ContainerAllocator> & v)
00203 {
00204 s << indent << "r: ";
00205 Printer<float>::stream(s, indent + " ", v.r);
00206 s << indent << "g: ";
00207 Printer<float>::stream(s, indent + " ", v.g);
00208 s << indent << "b: ";
00209 Printer<float>::stream(s, indent + " ", v.b);
00210 s << indent << "a: ";
00211 Printer<float>::stream(s, indent + " ", v.a);
00212 }
00213 };
00214
00215
00216 }
00217 }
00218
00219 #endif // STD_MSGS_MESSAGE_COLORRGBA_H
00220