GoalStatusArray.h
Go to the documentation of this file.
00001 #ifndef _ROS_actionlib_msgs_GoalStatusArray_h
00002 #define _ROS_actionlib_msgs_GoalStatusArray_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 "actionlib_msgs/GoalStatus.h"
00010 
00011 namespace actionlib_msgs
00012 {
00013 
00014   class GoalStatusArray : public ros::Msg
00015   {
00016     public:
00017       std_msgs::Header header;
00018       uint8_t status_list_length;
00019       actionlib_msgs::GoalStatus st_status_list;
00020       actionlib_msgs::GoalStatus * status_list;
00021 
00022     virtual int serialize(unsigned char *outbuffer) const
00023     {
00024       int offset = 0;
00025       offset += this->header.serialize(outbuffer + offset);
00026       *(outbuffer + offset++) = status_list_length;
00027       *(outbuffer + offset++) = 0;
00028       *(outbuffer + offset++) = 0;
00029       *(outbuffer + offset++) = 0;
00030       for( uint8_t i = 0; i < status_list_length; i++){
00031       offset += this->status_list[i].serialize(outbuffer + offset);
00032       }
00033       return offset;
00034     }
00035 
00036     virtual int deserialize(unsigned char *inbuffer)
00037     {
00038       int offset = 0;
00039       offset += this->header.deserialize(inbuffer + offset);
00040       uint8_t status_list_lengthT = *(inbuffer + offset++);
00041       if(status_list_lengthT > status_list_length)
00042         this->status_list = (actionlib_msgs::GoalStatus*)realloc(this->status_list, status_list_lengthT * sizeof(actionlib_msgs::GoalStatus));
00043       offset += 3;
00044       status_list_length = status_list_lengthT;
00045       for( uint8_t i = 0; i < status_list_length; i++){
00046       offset += this->st_status_list.deserialize(inbuffer + offset);
00047         memcpy( &(this->status_list[i]), &(this->st_status_list), sizeof(actionlib_msgs::GoalStatus));
00048       }
00049      return offset;
00050     }
00051 
00052     const char * getType(){ return "actionlib_msgs/GoalStatusArray"; };
00053     const char * getMD5(){ return "8b2b82f13216d0a8ea88bd3af735e619"; };
00054 
00055   };
00056 
00057 }
00058 #endif


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