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: mobile_robot mobile_robot_ver2
geometry_msgs/Twist.h
- Committer:
- BoGBoG
- Date:
- 2019-12-16
- Revision:
- 3:daf91334a889
- Parent:
- 0:9e9b7db60fd5
File content as of revision 3:daf91334a889:
#ifndef _ROS_geometry_msgs_Twist_h #define _ROS_geometry_msgs_Twist_h #include <stdint.h> #include <string.h> #include <stdlib.h> #include "ros/msg.h" #include "geometry_msgs/Vector3.h" namespace geometry_msgs { class Twist : public ros::Msg { public: typedef geometry_msgs::Vector3 _linear_type; _linear_type linear; typedef geometry_msgs::Vector3 _angular_type; _angular_type angular; Twist(): linear(), angular() { } virtual int serialize(unsigned char *outbuffer) const { int offset = 0; offset += this->linear.serialize(outbuffer + offset); offset += this->angular.serialize(outbuffer + offset); return offset; } virtual int deserialize(unsigned char *inbuffer) { int offset = 0; offset += this->linear.deserialize(inbuffer + offset); offset += this->angular.deserialize(inbuffer + offset); return offset; } const char * getType(){ return "geometry_msgs/Twist"; }; const char * getMD5(){ return "9f195f881246fdfa2798d1d3eebca84a"; }; }; } #endif