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.
Dependencies: BufferedSerial
Fork of ros_lib_indigo by
geometry_msgs/AccelStamped.h
- Committer:
- garyservin
- Date:
- 2016-03-31
- Revision:
- 0:fd24f7ca9688
File content as of revision 0:fd24f7ca9688:
#ifndef _ROS_geometry_msgs_AccelStamped_h #define _ROS_geometry_msgs_AccelStamped_h #include <stdint.h> #include <string.h> #include <stdlib.h> #include "ros/msg.h" #include "std_msgs/Header.h" #include "geometry_msgs/Accel.h" namespace geometry_msgs { class AccelStamped : public ros::Msg { public: std_msgs::Header header; geometry_msgs::Accel accel; AccelStamped(): header(), accel() { } virtual int serialize(unsigned char *outbuffer) const { int offset = 0; offset += this->header.serialize(outbuffer + offset); offset += this->accel.serialize(outbuffer + offset); return offset; } virtual int deserialize(unsigned char *inbuffer) { int offset = 0; offset += this->header.deserialize(inbuffer + offset); offset += this->accel.deserialize(inbuffer + offset); return offset; } const char * getType(){ return "geometry_msgs/AccelStamped"; }; const char * getMD5(){ return "d8a98a5d81351b6eb0578c78557e7659"; }; }; } #endif