GeoVw.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-fuerte-all-iri-ros.pub/doc_stacks/2013-12-06_19-37-16.229269/iri_perception/iri_perception_msgs/msg/GeoVw.msg */
00002 #ifndef IRI_PERCEPTION_MSGS_MESSAGE_GEOVW_H
00003 #define IRI_PERCEPTION_MSGS_MESSAGE_GEOVW_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 iri_perception_msgs
00019 {
00020 template <class ContainerAllocator>
00021 struct GeoVw_ {
00022   typedef GeoVw_<ContainerAllocator> Type;
00023 
00024   GeoVw_()
00025   : x(0)
00026   , y(0)
00027   , word(0)
00028   {
00029   }
00030 
00031   GeoVw_(const ContainerAllocator& _alloc)
00032   : x(0)
00033   , y(0)
00034   , word(0)
00035   {
00036   }
00037 
00038   typedef uint32_t _x_type;
00039   uint32_t x;
00040 
00041   typedef uint32_t _y_type;
00042   uint32_t y;
00043 
00044   typedef uint32_t _word_type;
00045   uint32_t word;
00046 
00047 
00048   typedef boost::shared_ptr< ::iri_perception_msgs::GeoVw_<ContainerAllocator> > Ptr;
00049   typedef boost::shared_ptr< ::iri_perception_msgs::GeoVw_<ContainerAllocator>  const> ConstPtr;
00050   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00051 }; // struct GeoVw
00052 typedef  ::iri_perception_msgs::GeoVw_<std::allocator<void> > GeoVw;
00053 
00054 typedef boost::shared_ptr< ::iri_perception_msgs::GeoVw> GeoVwPtr;
00055 typedef boost::shared_ptr< ::iri_perception_msgs::GeoVw const> GeoVwConstPtr;
00056 
00057 
00058 template<typename ContainerAllocator>
00059 std::ostream& operator<<(std::ostream& s, const  ::iri_perception_msgs::GeoVw_<ContainerAllocator> & v)
00060 {
00061   ros::message_operations::Printer< ::iri_perception_msgs::GeoVw_<ContainerAllocator> >::stream(s, "", v);
00062   return s;}
00063 
00064 } // namespace iri_perception_msgs
00065 
00066 namespace ros
00067 {
00068 namespace message_traits
00069 {
00070 template<class ContainerAllocator> struct IsMessage< ::iri_perception_msgs::GeoVw_<ContainerAllocator> > : public TrueType {};
00071 template<class ContainerAllocator> struct IsMessage< ::iri_perception_msgs::GeoVw_<ContainerAllocator>  const> : public TrueType {};
00072 template<class ContainerAllocator>
00073 struct MD5Sum< ::iri_perception_msgs::GeoVw_<ContainerAllocator> > {
00074   static const char* value() 
00075   {
00076     return "060e8b4afb3efb459a6ff75a4ab5f685";
00077   }
00078 
00079   static const char* value(const  ::iri_perception_msgs::GeoVw_<ContainerAllocator> &) { return value(); } 
00080   static const uint64_t static_value1 = 0x060e8b4afb3efb45ULL;
00081   static const uint64_t static_value2 = 0x9a6ff75a4ab5f685ULL;
00082 };
00083 
00084 template<class ContainerAllocator>
00085 struct DataType< ::iri_perception_msgs::GeoVw_<ContainerAllocator> > {
00086   static const char* value() 
00087   {
00088     return "iri_perception_msgs/GeoVw";
00089   }
00090 
00091   static const char* value(const  ::iri_perception_msgs::GeoVw_<ContainerAllocator> &) { return value(); } 
00092 };
00093 
00094 template<class ContainerAllocator>
00095 struct Definition< ::iri_perception_msgs::GeoVw_<ContainerAllocator> > {
00096   static const char* value() 
00097   {
00098     return "uint32 x\n\
00099 uint32 y\n\
00100 uint32 word\n\
00101 ";
00102   }
00103 
00104   static const char* value(const  ::iri_perception_msgs::GeoVw_<ContainerAllocator> &) { return value(); } 
00105 };
00106 
00107 template<class ContainerAllocator> struct IsFixedSize< ::iri_perception_msgs::GeoVw_<ContainerAllocator> > : public TrueType {};
00108 } // namespace message_traits
00109 } // namespace ros
00110 
00111 namespace ros
00112 {
00113 namespace serialization
00114 {
00115 
00116 template<class ContainerAllocator> struct Serializer< ::iri_perception_msgs::GeoVw_<ContainerAllocator> >
00117 {
00118   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00119   {
00120     stream.next(m.x);
00121     stream.next(m.y);
00122     stream.next(m.word);
00123   }
00124 
00125   ROS_DECLARE_ALLINONE_SERIALIZER;
00126 }; // struct GeoVw_
00127 } // namespace serialization
00128 } // namespace ros
00129 
00130 namespace ros
00131 {
00132 namespace message_operations
00133 {
00134 
00135 template<class ContainerAllocator>
00136 struct Printer< ::iri_perception_msgs::GeoVw_<ContainerAllocator> >
00137 {
00138   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::iri_perception_msgs::GeoVw_<ContainerAllocator> & v) 
00139   {
00140     s << indent << "x: ";
00141     Printer<uint32_t>::stream(s, indent + "  ", v.x);
00142     s << indent << "y: ";
00143     Printer<uint32_t>::stream(s, indent + "  ", v.y);
00144     s << indent << "word: ";
00145     Printer<uint32_t>::stream(s, indent + "  ", v.word);
00146   }
00147 };
00148 
00149 
00150 } // namespace message_operations
00151 } // namespace ros
00152 
00153 #endif // IRI_PERCEPTION_MSGS_MESSAGE_GEOVW_H
00154 


iri_perception_msgs
Author(s):
autogenerated on Fri Dec 6 2013 20:02:16