BoundingBox.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-fuerte-alufr-ros-pkg/doc_stacks/2012-12-26_15-13-16.045312/motld_freiburg/motld/msg/BoundingBox.msg */
00002 #ifndef MOTLD_MESSAGE_BOUNDINGBOX_H
00003 #define MOTLD_MESSAGE_BOUNDINGBOX_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 motld
00019 {
00020 template <class ContainerAllocator>
00021 struct BoundingBox_ {
00022   typedef BoundingBox_<ContainerAllocator> Type;
00023 
00024   BoundingBox_()
00025   : x(0)
00026   , y(0)
00027   , width(0)
00028   , height(0)
00029   {
00030   }
00031 
00032   BoundingBox_(const ContainerAllocator& _alloc)
00033   : x(0)
00034   , y(0)
00035   , width(0)
00036   , height(0)
00037   {
00038   }
00039 
00040   typedef int32_t _x_type;
00041   int32_t x;
00042 
00043   typedef int32_t _y_type;
00044   int32_t y;
00045 
00046   typedef int32_t _width_type;
00047   int32_t width;
00048 
00049   typedef int32_t _height_type;
00050   int32_t height;
00051 
00052 
00053   typedef boost::shared_ptr< ::motld::BoundingBox_<ContainerAllocator> > Ptr;
00054   typedef boost::shared_ptr< ::motld::BoundingBox_<ContainerAllocator>  const> ConstPtr;
00055   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00056 }; // struct BoundingBox
00057 typedef  ::motld::BoundingBox_<std::allocator<void> > BoundingBox;
00058 
00059 typedef boost::shared_ptr< ::motld::BoundingBox> BoundingBoxPtr;
00060 typedef boost::shared_ptr< ::motld::BoundingBox const> BoundingBoxConstPtr;
00061 
00062 
00063 template<typename ContainerAllocator>
00064 std::ostream& operator<<(std::ostream& s, const  ::motld::BoundingBox_<ContainerAllocator> & v)
00065 {
00066   ros::message_operations::Printer< ::motld::BoundingBox_<ContainerAllocator> >::stream(s, "", v);
00067   return s;}
00068 
00069 } // namespace motld
00070 
00071 namespace ros
00072 {
00073 namespace message_traits
00074 {
00075 template<class ContainerAllocator> struct IsMessage< ::motld::BoundingBox_<ContainerAllocator> > : public TrueType {};
00076 template<class ContainerAllocator> struct IsMessage< ::motld::BoundingBox_<ContainerAllocator>  const> : public TrueType {};
00077 template<class ContainerAllocator>
00078 struct MD5Sum< ::motld::BoundingBox_<ContainerAllocator> > {
00079   static const char* value() 
00080   {
00081     return "4425f1067abc7ec2e487d28194eccff4";
00082   }
00083 
00084   static const char* value(const  ::motld::BoundingBox_<ContainerAllocator> &) { return value(); } 
00085   static const uint64_t static_value1 = 0x4425f1067abc7ec2ULL;
00086   static const uint64_t static_value2 = 0xe487d28194eccff4ULL;
00087 };
00088 
00089 template<class ContainerAllocator>
00090 struct DataType< ::motld::BoundingBox_<ContainerAllocator> > {
00091   static const char* value() 
00092   {
00093     return "motld/BoundingBox";
00094   }
00095 
00096   static const char* value(const  ::motld::BoundingBox_<ContainerAllocator> &) { return value(); } 
00097 };
00098 
00099 template<class ContainerAllocator>
00100 struct Definition< ::motld::BoundingBox_<ContainerAllocator> > {
00101   static const char* value() 
00102   {
00103     return "int32 x\n\
00104 int32 y\n\
00105 int32 width\n\
00106 int32 height\n\
00107 ";
00108   }
00109 
00110   static const char* value(const  ::motld::BoundingBox_<ContainerAllocator> &) { return value(); } 
00111 };
00112 
00113 template<class ContainerAllocator> struct IsFixedSize< ::motld::BoundingBox_<ContainerAllocator> > : public TrueType {};
00114 } // namespace message_traits
00115 } // namespace ros
00116 
00117 namespace ros
00118 {
00119 namespace serialization
00120 {
00121 
00122 template<class ContainerAllocator> struct Serializer< ::motld::BoundingBox_<ContainerAllocator> >
00123 {
00124   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00125   {
00126     stream.next(m.x);
00127     stream.next(m.y);
00128     stream.next(m.width);
00129     stream.next(m.height);
00130   }
00131 
00132   ROS_DECLARE_ALLINONE_SERIALIZER;
00133 }; // struct BoundingBox_
00134 } // namespace serialization
00135 } // namespace ros
00136 
00137 namespace ros
00138 {
00139 namespace message_operations
00140 {
00141 
00142 template<class ContainerAllocator>
00143 struct Printer< ::motld::BoundingBox_<ContainerAllocator> >
00144 {
00145   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::motld::BoundingBox_<ContainerAllocator> & v) 
00146   {
00147     s << indent << "x: ";
00148     Printer<int32_t>::stream(s, indent + "  ", v.x);
00149     s << indent << "y: ";
00150     Printer<int32_t>::stream(s, indent + "  ", v.y);
00151     s << indent << "width: ";
00152     Printer<int32_t>::stream(s, indent + "  ", v.width);
00153     s << indent << "height: ";
00154     Printer<int32_t>::stream(s, indent + "  ", v.height);
00155   }
00156 };
00157 
00158 
00159 } // namespace message_operations
00160 } // namespace ros
00161 
00162 #endif // MOTLD_MESSAGE_BOUNDINGBOX_H
00163 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines


motld
Author(s): Jost Tobias Springenberg, Jan Wuelfing
autogenerated on Wed Dec 26 2012 16:24:48