Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: rosserial_mbed robot_S2
geometry_msgs/PoseStamped.h
- Committer:
- nucho
- Date:
- 2011-11-12
- Revision:
- 3:1cf99502f396
- Parent:
- 1:ff0ec969dad1
File content as of revision 3:1cf99502f396:
#ifndef _ROS_geometry_msgs_PoseStamped_h #define _ROS_geometry_msgs_PoseStamped_h #include <stdint.h> #include <string.h> #include <stdlib.h> #include "ros/msg.h" #include "std_msgs/Header.h" #include "geometry_msgs/Pose.h" namespace geometry_msgs { class PoseStamped : public ros::Msg { public: std_msgs::Header header; geometry_msgs::Pose pose; virtual int serialize(unsigned char *outbuffer) const { int offset = 0; offset += this->header.serialize(outbuffer + offset); offset += this->pose.serialize(outbuffer + offset); return offset; } virtual int deserialize(unsigned char *inbuffer) { int offset = 0; offset += this->header.deserialize(inbuffer + offset); offset += this->pose.deserialize(inbuffer + offset); return offset; } virtual const char * getType(){ return "geometry_msgs/PoseStamped"; }; virtual const char * getMD5(){ return "d3812c3cbc69362b77dc0b19b345f8f5"; }; }; } #endif