AveragingResult.h
Go to the documentation of this file.
00001 #ifndef _ROS_actionlib_tutorials_AveragingResult_h
00002 #define _ROS_actionlib_tutorials_AveragingResult_h
00003 
00004 #include <stdint.h>
00005 #include <string.h>
00006 #include <stdlib.h>
00007 #include "ros/msg.h"
00008 
00009 namespace actionlib_tutorials
00010 {
00011 
00012   class AveragingResult : public ros::Msg
00013   {
00014     public:
00015       float mean;
00016       float std_dev;
00017 
00018     virtual int serialize(unsigned char *outbuffer) const
00019     {
00020       int offset = 0;
00021       union {
00022         float real;
00023         uint32_t base;
00024       } u_mean;
00025       u_mean.real = this->mean;
00026       *(outbuffer + offset + 0) = (u_mean.base >> (8 * 0)) & 0xFF;
00027       *(outbuffer + offset + 1) = (u_mean.base >> (8 * 1)) & 0xFF;
00028       *(outbuffer + offset + 2) = (u_mean.base >> (8 * 2)) & 0xFF;
00029       *(outbuffer + offset + 3) = (u_mean.base >> (8 * 3)) & 0xFF;
00030       offset += sizeof(this->mean);
00031       union {
00032         float real;
00033         uint32_t base;
00034       } u_std_dev;
00035       u_std_dev.real = this->std_dev;
00036       *(outbuffer + offset + 0) = (u_std_dev.base >> (8 * 0)) & 0xFF;
00037       *(outbuffer + offset + 1) = (u_std_dev.base >> (8 * 1)) & 0xFF;
00038       *(outbuffer + offset + 2) = (u_std_dev.base >> (8 * 2)) & 0xFF;
00039       *(outbuffer + offset + 3) = (u_std_dev.base >> (8 * 3)) & 0xFF;
00040       offset += sizeof(this->std_dev);
00041       return offset;
00042     }
00043 
00044     virtual int deserialize(unsigned char *inbuffer)
00045     {
00046       int offset = 0;
00047       union {
00048         float real;
00049         uint32_t base;
00050       } u_mean;
00051       u_mean.base = 0;
00052       u_mean.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
00053       u_mean.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
00054       u_mean.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
00055       u_mean.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
00056       this->mean = u_mean.real;
00057       offset += sizeof(this->mean);
00058       union {
00059         float real;
00060         uint32_t base;
00061       } u_std_dev;
00062       u_std_dev.base = 0;
00063       u_std_dev.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
00064       u_std_dev.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
00065       u_std_dev.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
00066       u_std_dev.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
00067       this->std_dev = u_std_dev.real;
00068       offset += sizeof(this->std_dev);
00069      return offset;
00070     }
00071 
00072     const char * getType(){ return "actionlib_tutorials/AveragingResult"; };
00073     const char * getMD5(){ return "d5c7decf6df75ffb4367a05c1bcc7612"; };
00074 
00075   };
00076 
00077 }
00078 #endif


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