Go to the documentation of this file.00001
00002 #ifndef BIPEDROBIN_MSGS_SERVICE_STEPTARGET3DSERVICE_H
00003 #define BIPEDROBIN_MSGS_SERVICE_STEPTARGET3DSERVICE_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 "ros/service_traits.h"
00018
00019 #include "bipedRobin_msgs/StepTarget3D.h"
00020
00021
00022
00023 namespace bipedRobin_msgs
00024 {
00025 template <class ContainerAllocator>
00026 struct StepTarget3DServiceRequest_ {
00027 typedef StepTarget3DServiceRequest_<ContainerAllocator> Type;
00028
00029 StepTarget3DServiceRequest_()
00030 : step()
00031 {
00032 }
00033
00034 StepTarget3DServiceRequest_(const ContainerAllocator& _alloc)
00035 : step(_alloc)
00036 {
00037 }
00038
00039 typedef ::bipedRobin_msgs::StepTarget3D_<ContainerAllocator> _step_type;
00040 ::bipedRobin_msgs::StepTarget3D_<ContainerAllocator> step;
00041
00042
00043 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > Ptr;
00044 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> const> ConstPtr;
00045 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00046 };
00047 typedef ::bipedRobin_msgs::StepTarget3DServiceRequest_<std::allocator<void> > StepTarget3DServiceRequest;
00048
00049 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceRequest> StepTarget3DServiceRequestPtr;
00050 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceRequest const> StepTarget3DServiceRequestConstPtr;
00051
00052
00053 template <class ContainerAllocator>
00054 struct StepTarget3DServiceResponse_ {
00055 typedef StepTarget3DServiceResponse_<ContainerAllocator> Type;
00056
00057 StepTarget3DServiceResponse_()
00058 {
00059 }
00060
00061 StepTarget3DServiceResponse_(const ContainerAllocator& _alloc)
00062 {
00063 }
00064
00065
00066 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > Ptr;
00067 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> const> ConstPtr;
00068 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00069 };
00070 typedef ::bipedRobin_msgs::StepTarget3DServiceResponse_<std::allocator<void> > StepTarget3DServiceResponse;
00071
00072 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceResponse> StepTarget3DServiceResponsePtr;
00073 typedef boost::shared_ptr< ::bipedRobin_msgs::StepTarget3DServiceResponse const> StepTarget3DServiceResponseConstPtr;
00074
00075 struct StepTarget3DService
00076 {
00077
00078 typedef StepTarget3DServiceRequest Request;
00079 typedef StepTarget3DServiceResponse Response;
00080 Request request;
00081 Response response;
00082
00083 typedef Request RequestType;
00084 typedef Response ResponseType;
00085 };
00086 }
00087
00088 namespace ros
00089 {
00090 namespace message_traits
00091 {
00092 template<class ContainerAllocator> struct IsMessage< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > : public TrueType {};
00093 template<class ContainerAllocator> struct IsMessage< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> const> : public TrueType {};
00094 template<class ContainerAllocator>
00095 struct MD5Sum< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > {
00096 static const char* value()
00097 {
00098 return "bcc62d4ad78aa0eec03824b1228ffe40";
00099 }
00100
00101 static const char* value(const ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> &) { return value(); }
00102 static const uint64_t static_value1 = 0xbcc62d4ad78aa0eeULL;
00103 static const uint64_t static_value2 = 0xc03824b1228ffe40ULL;
00104 };
00105
00106 template<class ContainerAllocator>
00107 struct DataType< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > {
00108 static const char* value()
00109 {
00110 return "bipedRobin_msgs/StepTarget3DServiceRequest";
00111 }
00112
00113 static const char* value(const ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> &) { return value(); }
00114 };
00115
00116 template<class ContainerAllocator>
00117 struct Definition< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > {
00118 static const char* value()
00119 {
00120 return "\n\
00121 bipedRobin_msgs/StepTarget3D step\n\
00122 \n\
00123 ================================================================================\n\
00124 MSG: bipedRobin_msgs/StepTarget3D\n\
00125 # Target for a single stepping motion of a humanoid's leg\n\
00126 \n\
00127 geometry_msgs/Pose pose # step pose absolute\n\
00128 uint8 leg # which leg to use (left/right, see below)\n\
00129 \n\
00130 uint8 right=0 # right leg constant\n\
00131 uint8 left=1 # left leg constant\n\
00132 \n\
00133 ================================================================================\n\
00134 MSG: geometry_msgs/Pose\n\
00135 # A representation of pose in free space, composed of postion and orientation. \n\
00136 Point position\n\
00137 Quaternion orientation\n\
00138 \n\
00139 ================================================================================\n\
00140 MSG: geometry_msgs/Point\n\
00141 # This contains the position of a point in free space\n\
00142 float64 x\n\
00143 float64 y\n\
00144 float64 z\n\
00145 \n\
00146 ================================================================================\n\
00147 MSG: geometry_msgs/Quaternion\n\
00148 # This represents an orientation in free space in quaternion form.\n\
00149 \n\
00150 float64 x\n\
00151 float64 y\n\
00152 float64 z\n\
00153 float64 w\n\
00154 \n\
00155 ";
00156 }
00157
00158 static const char* value(const ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> &) { return value(); }
00159 };
00160
00161 template<class ContainerAllocator> struct IsFixedSize< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > : public TrueType {};
00162 }
00163 }
00164
00165
00166 namespace ros
00167 {
00168 namespace message_traits
00169 {
00170 template<class ContainerAllocator> struct IsMessage< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > : public TrueType {};
00171 template<class ContainerAllocator> struct IsMessage< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> const> : public TrueType {};
00172 template<class ContainerAllocator>
00173 struct MD5Sum< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > {
00174 static const char* value()
00175 {
00176 return "d41d8cd98f00b204e9800998ecf8427e";
00177 }
00178
00179 static const char* value(const ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> &) { return value(); }
00180 static const uint64_t static_value1 = 0xd41d8cd98f00b204ULL;
00181 static const uint64_t static_value2 = 0xe9800998ecf8427eULL;
00182 };
00183
00184 template<class ContainerAllocator>
00185 struct DataType< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > {
00186 static const char* value()
00187 {
00188 return "bipedRobin_msgs/StepTarget3DServiceResponse";
00189 }
00190
00191 static const char* value(const ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> &) { return value(); }
00192 };
00193
00194 template<class ContainerAllocator>
00195 struct Definition< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > {
00196 static const char* value()
00197 {
00198 return "\n\
00199 \n\
00200 ";
00201 }
00202
00203 static const char* value(const ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> &) { return value(); }
00204 };
00205
00206 template<class ContainerAllocator> struct IsFixedSize< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > : public TrueType {};
00207 }
00208 }
00209
00210 namespace ros
00211 {
00212 namespace serialization
00213 {
00214
00215 template<class ContainerAllocator> struct Serializer< ::bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> >
00216 {
00217 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00218 {
00219 stream.next(m.step);
00220 }
00221
00222 ROS_DECLARE_ALLINONE_SERIALIZER;
00223 };
00224 }
00225 }
00226
00227
00228 namespace ros
00229 {
00230 namespace serialization
00231 {
00232
00233 template<class ContainerAllocator> struct Serializer< ::bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> >
00234 {
00235 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00236 {
00237 }
00238
00239 ROS_DECLARE_ALLINONE_SERIALIZER;
00240 };
00241 }
00242 }
00243
00244 namespace ros
00245 {
00246 namespace service_traits
00247 {
00248 template<>
00249 struct MD5Sum<bipedRobin_msgs::StepTarget3DService> {
00250 static const char* value()
00251 {
00252 return "bcc62d4ad78aa0eec03824b1228ffe40";
00253 }
00254
00255 static const char* value(const bipedRobin_msgs::StepTarget3DService&) { return value(); }
00256 };
00257
00258 template<>
00259 struct DataType<bipedRobin_msgs::StepTarget3DService> {
00260 static const char* value()
00261 {
00262 return "bipedRobin_msgs/StepTarget3DService";
00263 }
00264
00265 static const char* value(const bipedRobin_msgs::StepTarget3DService&) { return value(); }
00266 };
00267
00268 template<class ContainerAllocator>
00269 struct MD5Sum<bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > {
00270 static const char* value()
00271 {
00272 return "bcc62d4ad78aa0eec03824b1228ffe40";
00273 }
00274
00275 static const char* value(const bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> &) { return value(); }
00276 };
00277
00278 template<class ContainerAllocator>
00279 struct DataType<bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> > {
00280 static const char* value()
00281 {
00282 return "bipedRobin_msgs/StepTarget3DService";
00283 }
00284
00285 static const char* value(const bipedRobin_msgs::StepTarget3DServiceRequest_<ContainerAllocator> &) { return value(); }
00286 };
00287
00288 template<class ContainerAllocator>
00289 struct MD5Sum<bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > {
00290 static const char* value()
00291 {
00292 return "bcc62d4ad78aa0eec03824b1228ffe40";
00293 }
00294
00295 static const char* value(const bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> &) { return value(); }
00296 };
00297
00298 template<class ContainerAllocator>
00299 struct DataType<bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> > {
00300 static const char* value()
00301 {
00302 return "bipedRobin_msgs/StepTarget3DService";
00303 }
00304
00305 static const char* value(const bipedRobin_msgs::StepTarget3DServiceResponse_<ContainerAllocator> &) { return value(); }
00306 };
00307
00308 }
00309 }
00310
00311 #endif // BIPEDROBIN_MSGS_SERVICE_STEPTARGET3DSERVICE_H
00312