kitt_platform
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Macros
GetMap.h
Go to the documentation of this file.
1 #ifndef _ROS_SERVICE_GetMap_h
2 #define _ROS_SERVICE_GetMap_h
3 #include <stdint.h>
4 #include <string.h>
5 #include <stdlib.h>
6 #include "ros/msg.h"
8 
9 namespace nav_msgs
10 {
11 
12 static const char GETMAP[] = "nav_msgs/GetMap";
13 
14  class GetMapRequest : public ros::Msg
15  {
16  public:
17 
19  {
20  }
21 
22  virtual int serialize(unsigned char *outbuffer) const
23  {
24  int offset = 0;
25  return offset;
26  }
27 
28  virtual int deserialize(unsigned char *inbuffer)
29  {
30  int offset = 0;
31  return offset;
32  }
33 
34  const char * getType(){ return GETMAP; };
35  const char * getMD5(){ return "d41d8cd98f00b204e9800998ecf8427e"; };
36 
37  };
38 
39  class GetMapResponse : public ros::Msg
40  {
41  public:
43 
45  map()
46  {
47  }
48 
49  virtual int serialize(unsigned char *outbuffer) const
50  {
51  int offset = 0;
52  offset += this->map.serialize(outbuffer + offset);
53  return offset;
54  }
55 
56  virtual int deserialize(unsigned char *inbuffer)
57  {
58  int offset = 0;
59  offset += this->map.deserialize(inbuffer + offset);
60  return offset;
61  }
62 
63  const char * getType(){ return GETMAP; };
64  const char * getMD5(){ return "6cdd0a18e0aff5b0a3ca2326a89b54ff"; };
65 
66  };
67 
68  class GetMap {
69  public:
72  };
73 
74 }
75 #endif
Definition: OccupancyGrid.h:14
GetMapResponse()
Definition: GetMap.h:44
const char * getType()
Definition: GetMap.h:34
nav_msgs::OccupancyGrid map
Definition: GetMap.h:42
GetMapRequest()
Definition: GetMap.h:18
virtual int deserialize(unsigned char *inbuffer)
Definition: OccupancyGrid.h:51
Definition: GetMap.h:68
const char * getMD5()
Definition: GetMap.h:64
GetMapRequest Request
Definition: GetMap.h:70
const char * getMD5()
Definition: GetMap.h:35
static const char GETMAP[]
Definition: GetMap.h:12
virtual int deserialize(unsigned char *inbuffer)
Definition: GetMap.h:56
virtual int deserialize(unsigned char *inbuffer)
Definition: GetMap.h:28
GetMapResponse Response
Definition: GetMap.h:71
virtual int serialize(unsigned char *outbuffer) const
Definition: OccupancyGrid.h:30
const char * getType()
Definition: GetMap.h:63
Definition: GetMap.h:39
Definition: GetMap.h:14
virtual int serialize(unsigned char *outbuffer) const
Definition: GetMap.h:49
virtual int serialize(unsigned char *outbuffer) const
Definition: GetMap.h:22
Definition: msg.h:43