Working towards recieving twists

Dependencies:   BufferedSerial

Fork of ros_lib_kinetic by Gary Servin

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GetMapResult.h Source File

GetMapResult.h

00001 #ifndef _ROS_nav_msgs_GetMapResult_h
00002 #define _ROS_nav_msgs_GetMapResult_h
00003 
00004 #include <stdint.h>
00005 #include <string.h>
00006 #include <stdlib.h>
00007 #include "ros/msg.h"
00008 #include "nav_msgs/OccupancyGrid.h"
00009 
00010 namespace nav_msgs
00011 {
00012 
00013   class GetMapResult : public ros::Msg
00014   {
00015     public:
00016       typedef nav_msgs::OccupancyGrid _map_type;
00017       _map_type map;
00018 
00019     GetMapResult():
00020       map()
00021     {
00022     }
00023 
00024     virtual int serialize(unsigned char *outbuffer) const
00025     {
00026       int offset = 0;
00027       offset += this->map.serialize(outbuffer + offset);
00028       return offset;
00029     }
00030 
00031     virtual int deserialize(unsigned char *inbuffer)
00032     {
00033       int offset = 0;
00034       offset += this->map.deserialize(inbuffer + offset);
00035      return offset;
00036     }
00037 
00038     const char * getType(){ return "nav_msgs/GetMapResult"; };
00039     const char * getMD5(){ return "6cdd0a18e0aff5b0a3ca2326a89b54ff"; };
00040 
00041   };
00042 
00043 }
00044 #endif