Door.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/dynamic_door_manipulation/door_perception_old/msg/Door.msg */
00002 #ifndef DOOR_PERCEPTION_OLD_MESSAGE_DOOR_H
00003 #define DOOR_PERCEPTION_OLD_MESSAGE_DOOR_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 #include "std_msgs/Header.h"
00018 #include "geometry_msgs/Pose.h"
00019 
00020 namespace door_perception_old
00021 {
00022 template <class ContainerAllocator>
00023 struct Door_ {
00024   typedef Door_<ContainerAllocator> Type;
00025 
00026   Door_()
00027   : header()
00028   , axis()
00029   , radius(0.0)
00030   {
00031   }
00032 
00033   Door_(const ContainerAllocator& _alloc)
00034   : header(_alloc)
00035   , axis(_alloc)
00036   , radius(0.0)
00037   {
00038   }
00039 
00040   typedef  ::std_msgs::Header_<ContainerAllocator>  _header_type;
00041    ::std_msgs::Header_<ContainerAllocator>  header;
00042 
00043   typedef  ::geometry_msgs::Pose_<ContainerAllocator>  _axis_type;
00044    ::geometry_msgs::Pose_<ContainerAllocator>  axis;
00045 
00046   typedef double _radius_type;
00047   double radius;
00048 
00049 
00050   typedef boost::shared_ptr< ::door_perception_old::Door_<ContainerAllocator> > Ptr;
00051   typedef boost::shared_ptr< ::door_perception_old::Door_<ContainerAllocator>  const> ConstPtr;
00052   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00053 }; // struct Door
00054 typedef  ::door_perception_old::Door_<std::allocator<void> > Door;
00055 
00056 typedef boost::shared_ptr< ::door_perception_old::Door> DoorPtr;
00057 typedef boost::shared_ptr< ::door_perception_old::Door const> DoorConstPtr;
00058 
00059 
00060 template<typename ContainerAllocator>
00061 std::ostream& operator<<(std::ostream& s, const  ::door_perception_old::Door_<ContainerAllocator> & v)
00062 {
00063   ros::message_operations::Printer< ::door_perception_old::Door_<ContainerAllocator> >::stream(s, "", v);
00064   return s;}
00065 
00066 } // namespace door_perception_old
00067 
00068 namespace ros
00069 {
00070 namespace message_traits
00071 {
00072 template<class ContainerAllocator> struct IsMessage< ::door_perception_old::Door_<ContainerAllocator> > : public TrueType {};
00073 template<class ContainerAllocator> struct IsMessage< ::door_perception_old::Door_<ContainerAllocator>  const> : public TrueType {};
00074 template<class ContainerAllocator>
00075 struct MD5Sum< ::door_perception_old::Door_<ContainerAllocator> > {
00076   static const char* value() 
00077   {
00078     return "fce3feccaee01f73aacec4ee0cc19829";
00079   }
00080 
00081   static const char* value(const  ::door_perception_old::Door_<ContainerAllocator> &) { return value(); } 
00082   static const uint64_t static_value1 = 0xfce3feccaee01f73ULL;
00083   static const uint64_t static_value2 = 0xaacec4ee0cc19829ULL;
00084 };
00085 
00086 template<class ContainerAllocator>
00087 struct DataType< ::door_perception_old::Door_<ContainerAllocator> > {
00088   static const char* value() 
00089   {
00090     return "door_perception_old/Door";
00091   }
00092 
00093   static const char* value(const  ::door_perception_old::Door_<ContainerAllocator> &) { return value(); } 
00094 };
00095 
00096 template<class ContainerAllocator>
00097 struct Definition< ::door_perception_old::Door_<ContainerAllocator> > {
00098   static const char* value() 
00099   {
00100     return "# Axis shall be aligned s.t. the y axis is along the closed door, while the z\n\
00101 # axis is the up vector and the x axis designates the direction in which the\n\
00102 # door opens\n\
00103 \n\
00104 std_msgs/Header header\n\
00105 geometry_msgs/Pose axis \n\
00106 float64 radius\n\
00107 \n\
00108 ================================================================================\n\
00109 MSG: std_msgs/Header\n\
00110 # Standard metadata for higher-level stamped data types.\n\
00111 # This is generally used to communicate timestamped data \n\
00112 # in a particular coordinate frame.\n\
00113 # \n\
00114 # sequence ID: consecutively increasing ID \n\
00115 uint32 seq\n\
00116 #Two-integer timestamp that is expressed as:\n\
00117 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00118 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00119 # time-handling sugar is provided by the client library\n\
00120 time stamp\n\
00121 #Frame this data is associated with\n\
00122 # 0: no frame\n\
00123 # 1: global frame\n\
00124 string frame_id\n\
00125 \n\
00126 ================================================================================\n\
00127 MSG: geometry_msgs/Pose\n\
00128 # A representation of pose in free space, composed of postion and orientation. \n\
00129 Point position\n\
00130 Quaternion orientation\n\
00131 \n\
00132 ================================================================================\n\
00133 MSG: geometry_msgs/Point\n\
00134 # This contains the position of a point in free space\n\
00135 float64 x\n\
00136 float64 y\n\
00137 float64 z\n\
00138 \n\
00139 ================================================================================\n\
00140 MSG: geometry_msgs/Quaternion\n\
00141 # This represents an orientation in free space in quaternion form.\n\
00142 \n\
00143 float64 x\n\
00144 float64 y\n\
00145 float64 z\n\
00146 float64 w\n\
00147 \n\
00148 ";
00149   }
00150 
00151   static const char* value(const  ::door_perception_old::Door_<ContainerAllocator> &) { return value(); } 
00152 };
00153 
00154 } // namespace message_traits
00155 } // namespace ros
00156 
00157 namespace ros
00158 {
00159 namespace serialization
00160 {
00161 
00162 template<class ContainerAllocator> struct Serializer< ::door_perception_old::Door_<ContainerAllocator> >
00163 {
00164   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00165   {
00166     stream.next(m.header);
00167     stream.next(m.axis);
00168     stream.next(m.radius);
00169   }
00170 
00171   ROS_DECLARE_ALLINONE_SERIALIZER;
00172 }; // struct Door_
00173 } // namespace serialization
00174 } // namespace ros
00175 
00176 namespace ros
00177 {
00178 namespace message_operations
00179 {
00180 
00181 template<class ContainerAllocator>
00182 struct Printer< ::door_perception_old::Door_<ContainerAllocator> >
00183 {
00184   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::door_perception_old::Door_<ContainerAllocator> & v) 
00185   {
00186     s << indent << "header: ";
00187 s << std::endl;
00188     Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + "  ", v.header);
00189     s << indent << "axis: ";
00190 s << std::endl;
00191     Printer< ::geometry_msgs::Pose_<ContainerAllocator> >::stream(s, indent + "  ", v.axis);
00192     s << indent << "radius: ";
00193     Printer<double>::stream(s, indent + "  ", v.radius);
00194   }
00195 };
00196 
00197 
00198 } // namespace message_operations
00199 } // namespace ros
00200 
00201 #endif // DOOR_PERCEPTION_OLD_MESSAGE_DOOR_H
00202 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Friends


door_perception_old
Author(s): Felix Endres
autogenerated on Wed Dec 26 2012 15:56:10