StrParameter.h
Go to the documentation of this file.
00001 #ifndef _ROS_dynamic_reconfigure_StrParameter_h
00002 #define _ROS_dynamic_reconfigure_StrParameter_h
00003 
00004 #include <stdint.h>
00005 #include <string.h>
00006 #include <stdlib.h>
00007 #include "ros/msg.h"
00008 
00009 namespace dynamic_reconfigure
00010 {
00011 
00012   class StrParameter : public ros::Msg
00013   {
00014     public:
00015       const char* name;
00016       const char* value;
00017 
00018     virtual int serialize(unsigned char *outbuffer) const
00019     {
00020       int offset = 0;
00021       uint32_t length_name = strlen(this->name);
00022       memcpy(outbuffer + offset, &length_name, sizeof(uint32_t));
00023       offset += 4;
00024       memcpy(outbuffer + offset, this->name, length_name);
00025       offset += length_name;
00026       uint32_t length_value = strlen(this->value);
00027       memcpy(outbuffer + offset, &length_value, sizeof(uint32_t));
00028       offset += 4;
00029       memcpy(outbuffer + offset, this->value, length_value);
00030       offset += length_value;
00031       return offset;
00032     }
00033 
00034     virtual int deserialize(unsigned char *inbuffer)
00035     {
00036       int offset = 0;
00037       uint32_t length_name;
00038       memcpy(&length_name, (inbuffer + offset), sizeof(uint32_t));
00039       offset += 4;
00040       for(unsigned int k= offset; k< offset+length_name; ++k){
00041           inbuffer[k-1]=inbuffer[k];
00042       }
00043       inbuffer[offset+length_name-1]=0;
00044       this->name = (char *)(inbuffer + offset-1);
00045       offset += length_name;
00046       uint32_t length_value;
00047       memcpy(&length_value, (inbuffer + offset), sizeof(uint32_t));
00048       offset += 4;
00049       for(unsigned int k= offset; k< offset+length_value; ++k){
00050           inbuffer[k-1]=inbuffer[k];
00051       }
00052       inbuffer[offset+length_value-1]=0;
00053       this->value = (char *)(inbuffer + offset-1);
00054       offset += length_value;
00055      return offset;
00056     }
00057 
00058     const char * getType(){ return "dynamic_reconfigure/StrParameter"; };
00059     const char * getMD5(){ return "bc6ccc4a57f61779c8eaae61e9f422e0"; };
00060 
00061   };
00062 
00063 }
00064 #endif


ric_mc
Author(s): RoboTiCan
autogenerated on Thu Aug 27 2015 14:39:50