$search
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-electric-alufr-humanoid_stacks/doc_stacks/2013-03-05_11-28-06.315559/nao_robot/nao_msgs/msg/FollowPathGoal.msg */ 00002 #ifndef NAO_MSGS_MESSAGE_FOLLOWPATHGOAL_H 00003 #define NAO_MSGS_MESSAGE_FOLLOWPATHGOAL_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 "nav_msgs/Path.h" 00018 00019 namespace nao_msgs 00020 { 00021 template <class ContainerAllocator> 00022 struct FollowPathGoal_ { 00023 typedef FollowPathGoal_<ContainerAllocator> Type; 00024 00025 FollowPathGoal_() 00026 : path() 00027 { 00028 } 00029 00030 FollowPathGoal_(const ContainerAllocator& _alloc) 00031 : path(_alloc) 00032 { 00033 } 00034 00035 typedef ::nav_msgs::Path_<ContainerAllocator> _path_type; 00036 ::nav_msgs::Path_<ContainerAllocator> path; 00037 00038 00039 private: 00040 static const char* __s_getDataType_() { return "nao_msgs/FollowPathGoal"; } 00041 public: 00042 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); } 00043 00044 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); } 00045 00046 private: 00047 static const char* __s_getMD5Sum_() { return "58d6f138c7de7ef47c75d4b7e5df5472"; } 00048 public: 00049 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); } 00050 00051 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); } 00052 00053 private: 00054 static const char* __s_getMessageDefinition_() { return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\ 00055 # goal: a path to follow\n\ 00056 nav_msgs/Path path\n\ 00057 \n\ 00058 ================================================================================\n\ 00059 MSG: nav_msgs/Path\n\ 00060 #An array of poses that represents a Path for a robot to follow\n\ 00061 Header header\n\ 00062 geometry_msgs/PoseStamped[] poses\n\ 00063 \n\ 00064 ================================================================================\n\ 00065 MSG: std_msgs/Header\n\ 00066 # Standard metadata for higher-level stamped data types.\n\ 00067 # This is generally used to communicate timestamped data \n\ 00068 # in a particular coordinate frame.\n\ 00069 # \n\ 00070 # sequence ID: consecutively increasing ID \n\ 00071 uint32 seq\n\ 00072 #Two-integer timestamp that is expressed as:\n\ 00073 # * stamp.secs: seconds (stamp_secs) since epoch\n\ 00074 # * stamp.nsecs: nanoseconds since stamp_secs\n\ 00075 # time-handling sugar is provided by the client library\n\ 00076 time stamp\n\ 00077 #Frame this data is associated with\n\ 00078 # 0: no frame\n\ 00079 # 1: global frame\n\ 00080 string frame_id\n\ 00081 \n\ 00082 ================================================================================\n\ 00083 MSG: geometry_msgs/PoseStamped\n\ 00084 # A Pose with reference coordinate frame and timestamp\n\ 00085 Header header\n\ 00086 Pose pose\n\ 00087 \n\ 00088 ================================================================================\n\ 00089 MSG: geometry_msgs/Pose\n\ 00090 # A representation of pose in free space, composed of postion and orientation. \n\ 00091 Point position\n\ 00092 Quaternion orientation\n\ 00093 \n\ 00094 ================================================================================\n\ 00095 MSG: geometry_msgs/Point\n\ 00096 # This contains the position of a point in free space\n\ 00097 float64 x\n\ 00098 float64 y\n\ 00099 float64 z\n\ 00100 \n\ 00101 ================================================================================\n\ 00102 MSG: geometry_msgs/Quaternion\n\ 00103 # This represents an orientation in free space in quaternion form.\n\ 00104 \n\ 00105 float64 x\n\ 00106 float64 y\n\ 00107 float64 z\n\ 00108 float64 w\n\ 00109 \n\ 00110 "; } 00111 public: 00112 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); } 00113 00114 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); } 00115 00116 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const 00117 { 00118 ros::serialization::OStream stream(write_ptr, 1000000000); 00119 ros::serialization::serialize(stream, path); 00120 return stream.getData(); 00121 } 00122 00123 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr) 00124 { 00125 ros::serialization::IStream stream(read_ptr, 1000000000); 00126 ros::serialization::deserialize(stream, path); 00127 return stream.getData(); 00128 } 00129 00130 ROS_DEPRECATED virtual uint32_t serializationLength() const 00131 { 00132 uint32_t size = 0; 00133 size += ros::serialization::serializationLength(path); 00134 return size; 00135 } 00136 00137 typedef boost::shared_ptr< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > Ptr; 00138 typedef boost::shared_ptr< ::nao_msgs::FollowPathGoal_<ContainerAllocator> const> ConstPtr; 00139 boost::shared_ptr<std::map<std::string, std::string> > __connection_header; 00140 }; // struct FollowPathGoal 00141 typedef ::nao_msgs::FollowPathGoal_<std::allocator<void> > FollowPathGoal; 00142 00143 typedef boost::shared_ptr< ::nao_msgs::FollowPathGoal> FollowPathGoalPtr; 00144 typedef boost::shared_ptr< ::nao_msgs::FollowPathGoal const> FollowPathGoalConstPtr; 00145 00146 00147 template<typename ContainerAllocator> 00148 std::ostream& operator<<(std::ostream& s, const ::nao_msgs::FollowPathGoal_<ContainerAllocator> & v) 00149 { 00150 ros::message_operations::Printer< ::nao_msgs::FollowPathGoal_<ContainerAllocator> >::stream(s, "", v); 00151 return s;} 00152 00153 } // namespace nao_msgs 00154 00155 namespace ros 00156 { 00157 namespace message_traits 00158 { 00159 template<class ContainerAllocator> struct IsMessage< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > : public TrueType {}; 00160 template<class ContainerAllocator> struct IsMessage< ::nao_msgs::FollowPathGoal_<ContainerAllocator> const> : public TrueType {}; 00161 template<class ContainerAllocator> 00162 struct MD5Sum< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > { 00163 static const char* value() 00164 { 00165 return "58d6f138c7de7ef47c75d4b7e5df5472"; 00166 } 00167 00168 static const char* value(const ::nao_msgs::FollowPathGoal_<ContainerAllocator> &) { return value(); } 00169 static const uint64_t static_value1 = 0x58d6f138c7de7ef4ULL; 00170 static const uint64_t static_value2 = 0x7c75d4b7e5df5472ULL; 00171 }; 00172 00173 template<class ContainerAllocator> 00174 struct DataType< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > { 00175 static const char* value() 00176 { 00177 return "nao_msgs/FollowPathGoal"; 00178 } 00179 00180 static const char* value(const ::nao_msgs::FollowPathGoal_<ContainerAllocator> &) { return value(); } 00181 }; 00182 00183 template<class ContainerAllocator> 00184 struct Definition< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > { 00185 static const char* value() 00186 { 00187 return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\ 00188 # goal: a path to follow\n\ 00189 nav_msgs/Path path\n\ 00190 \n\ 00191 ================================================================================\n\ 00192 MSG: nav_msgs/Path\n\ 00193 #An array of poses that represents a Path for a robot to follow\n\ 00194 Header header\n\ 00195 geometry_msgs/PoseStamped[] poses\n\ 00196 \n\ 00197 ================================================================================\n\ 00198 MSG: std_msgs/Header\n\ 00199 # Standard metadata for higher-level stamped data types.\n\ 00200 # This is generally used to communicate timestamped data \n\ 00201 # in a particular coordinate frame.\n\ 00202 # \n\ 00203 # sequence ID: consecutively increasing ID \n\ 00204 uint32 seq\n\ 00205 #Two-integer timestamp that is expressed as:\n\ 00206 # * stamp.secs: seconds (stamp_secs) since epoch\n\ 00207 # * stamp.nsecs: nanoseconds since stamp_secs\n\ 00208 # time-handling sugar is provided by the client library\n\ 00209 time stamp\n\ 00210 #Frame this data is associated with\n\ 00211 # 0: no frame\n\ 00212 # 1: global frame\n\ 00213 string frame_id\n\ 00214 \n\ 00215 ================================================================================\n\ 00216 MSG: geometry_msgs/PoseStamped\n\ 00217 # A Pose with reference coordinate frame and timestamp\n\ 00218 Header header\n\ 00219 Pose pose\n\ 00220 \n\ 00221 ================================================================================\n\ 00222 MSG: geometry_msgs/Pose\n\ 00223 # A representation of pose in free space, composed of postion and orientation. \n\ 00224 Point position\n\ 00225 Quaternion orientation\n\ 00226 \n\ 00227 ================================================================================\n\ 00228 MSG: geometry_msgs/Point\n\ 00229 # This contains the position of a point in free space\n\ 00230 float64 x\n\ 00231 float64 y\n\ 00232 float64 z\n\ 00233 \n\ 00234 ================================================================================\n\ 00235 MSG: geometry_msgs/Quaternion\n\ 00236 # This represents an orientation in free space in quaternion form.\n\ 00237 \n\ 00238 float64 x\n\ 00239 float64 y\n\ 00240 float64 z\n\ 00241 float64 w\n\ 00242 \n\ 00243 "; 00244 } 00245 00246 static const char* value(const ::nao_msgs::FollowPathGoal_<ContainerAllocator> &) { return value(); } 00247 }; 00248 00249 } // namespace message_traits 00250 } // namespace ros 00251 00252 namespace ros 00253 { 00254 namespace serialization 00255 { 00256 00257 template<class ContainerAllocator> struct Serializer< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > 00258 { 00259 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) 00260 { 00261 stream.next(m.path); 00262 } 00263 00264 ROS_DECLARE_ALLINONE_SERIALIZER; 00265 }; // struct FollowPathGoal_ 00266 } // namespace serialization 00267 } // namespace ros 00268 00269 namespace ros 00270 { 00271 namespace message_operations 00272 { 00273 00274 template<class ContainerAllocator> 00275 struct Printer< ::nao_msgs::FollowPathGoal_<ContainerAllocator> > 00276 { 00277 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::nao_msgs::FollowPathGoal_<ContainerAllocator> & v) 00278 { 00279 s << indent << "path: "; 00280 s << std::endl; 00281 Printer< ::nav_msgs::Path_<ContainerAllocator> >::stream(s, indent + " ", v.path); 00282 } 00283 }; 00284 00285 00286 } // namespace message_operations 00287 } // namespace ros 00288 00289 #endif // NAO_MSGS_MESSAGE_FOLLOWPATHGOAL_H 00290