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


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