JointRequest.h
Go to the documentation of this file.
00001 #ifndef _ROS_SERVICE_JointRequest_h
00002 #define _ROS_SERVICE_JointRequest_h
00003 #include <stdint.h>
00004 #include <string.h>
00005 #include <stdlib.h>
00006 #include "ros/msg.h"
00007 
00008 namespace gazebo_msgs
00009 {
00010 
00011 static const char JOINTREQUEST[] = "gazebo_msgs/JointRequest";
00012 
00013   class JointRequestRequest : public ros::Msg
00014   {
00015     public:
00016       const char* joint_name;
00017 
00018     virtual int serialize(unsigned char *outbuffer) const
00019     {
00020       int offset = 0;
00021       uint32_t length_joint_name = strlen(this->joint_name);
00022       memcpy(outbuffer + offset, &length_joint_name, sizeof(uint32_t));
00023       offset += 4;
00024       memcpy(outbuffer + offset, this->joint_name, length_joint_name);
00025       offset += length_joint_name;
00026       return offset;
00027     }
00028 
00029     virtual int deserialize(unsigned char *inbuffer)
00030     {
00031       int offset = 0;
00032       uint32_t length_joint_name;
00033       memcpy(&length_joint_name, (inbuffer + offset), sizeof(uint32_t));
00034       offset += 4;
00035       for(unsigned int k= offset; k< offset+length_joint_name; ++k){
00036           inbuffer[k-1]=inbuffer[k];
00037       }
00038       inbuffer[offset+length_joint_name-1]=0;
00039       this->joint_name = (char *)(inbuffer + offset-1);
00040       offset += length_joint_name;
00041      return offset;
00042     }
00043 
00044     const char * getType(){ return JOINTREQUEST; };
00045     const char * getMD5(){ return "0be1351618e1dc030eb7959d9a4902de"; };
00046 
00047   };
00048 
00049   class JointRequestResponse : public ros::Msg
00050   {
00051     public:
00052 
00053     virtual int serialize(unsigned char *outbuffer) const
00054     {
00055       int offset = 0;
00056       return offset;
00057     }
00058 
00059     virtual int deserialize(unsigned char *inbuffer)
00060     {
00061       int offset = 0;
00062      return offset;
00063     }
00064 
00065     const char * getType(){ return JOINTREQUEST; };
00066     const char * getMD5(){ return "d41d8cd98f00b204e9800998ecf8427e"; };
00067 
00068   };
00069 
00070   class JointRequest {
00071     public:
00072     typedef JointRequestRequest Request;
00073     typedef JointRequestResponse Response;
00074   };
00075 
00076 }
00077 #endif


ric_mc
Author(s): RoboTiCan
autogenerated on Fri May 20 2016 03:48:55