rosserial library for mbed Inspired by nucho's rosserial library This library is still under development
Dependents: mbed_roshydro_test
Library still under development!
tf2_msgs/LookupTransformResult.h@0:30537dec6e0b, 2015-02-15 (annotated)
- Committer:
- akashvibhute
- Date:
- Sun Feb 15 10:53:43 2015 +0000
- Revision:
- 0:30537dec6e0b
First commit; Library still need to be debugged, compilation issues with new mbed and modserial updates.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
akashvibhute | 0:30537dec6e0b | 1 | #ifndef _ROS_tf2_msgs_LookupTransformResult_h |
akashvibhute | 0:30537dec6e0b | 2 | #define _ROS_tf2_msgs_LookupTransformResult_h |
akashvibhute | 0:30537dec6e0b | 3 | |
akashvibhute | 0:30537dec6e0b | 4 | #include <stdint.h> |
akashvibhute | 0:30537dec6e0b | 5 | #include <string.h> |
akashvibhute | 0:30537dec6e0b | 6 | #include <stdlib.h> |
akashvibhute | 0:30537dec6e0b | 7 | #include "ros/msg.h" |
akashvibhute | 0:30537dec6e0b | 8 | #include "geometry_msgs/TransformStamped.h" |
akashvibhute | 0:30537dec6e0b | 9 | #include "tf2_msgs/TF2Error.h" |
akashvibhute | 0:30537dec6e0b | 10 | |
akashvibhute | 0:30537dec6e0b | 11 | namespace tf2_msgs |
akashvibhute | 0:30537dec6e0b | 12 | { |
akashvibhute | 0:30537dec6e0b | 13 | |
akashvibhute | 0:30537dec6e0b | 14 | class LookupTransformResult : public ros::Msg |
akashvibhute | 0:30537dec6e0b | 15 | { |
akashvibhute | 0:30537dec6e0b | 16 | public: |
akashvibhute | 0:30537dec6e0b | 17 | geometry_msgs::TransformStamped transform; |
akashvibhute | 0:30537dec6e0b | 18 | tf2_msgs::TF2Error error; |
akashvibhute | 0:30537dec6e0b | 19 | |
akashvibhute | 0:30537dec6e0b | 20 | LookupTransformResult(): |
akashvibhute | 0:30537dec6e0b | 21 | transform(), |
akashvibhute | 0:30537dec6e0b | 22 | error() |
akashvibhute | 0:30537dec6e0b | 23 | { |
akashvibhute | 0:30537dec6e0b | 24 | } |
akashvibhute | 0:30537dec6e0b | 25 | |
akashvibhute | 0:30537dec6e0b | 26 | virtual int serialize(unsigned char *outbuffer) const |
akashvibhute | 0:30537dec6e0b | 27 | { |
akashvibhute | 0:30537dec6e0b | 28 | int offset = 0; |
akashvibhute | 0:30537dec6e0b | 29 | offset += this->transform.serialize(outbuffer + offset); |
akashvibhute | 0:30537dec6e0b | 30 | offset += this->error.serialize(outbuffer + offset); |
akashvibhute | 0:30537dec6e0b | 31 | return offset; |
akashvibhute | 0:30537dec6e0b | 32 | } |
akashvibhute | 0:30537dec6e0b | 33 | |
akashvibhute | 0:30537dec6e0b | 34 | virtual int deserialize(unsigned char *inbuffer) |
akashvibhute | 0:30537dec6e0b | 35 | { |
akashvibhute | 0:30537dec6e0b | 36 | int offset = 0; |
akashvibhute | 0:30537dec6e0b | 37 | offset += this->transform.deserialize(inbuffer + offset); |
akashvibhute | 0:30537dec6e0b | 38 | offset += this->error.deserialize(inbuffer + offset); |
akashvibhute | 0:30537dec6e0b | 39 | return offset; |
akashvibhute | 0:30537dec6e0b | 40 | } |
akashvibhute | 0:30537dec6e0b | 41 | |
akashvibhute | 0:30537dec6e0b | 42 | const char * getType(){ return "tf2_msgs/LookupTransformResult"; }; |
akashvibhute | 0:30537dec6e0b | 43 | const char * getMD5(){ return "3fe5db6a19ca9cfb675418c5ad875c36"; }; |
akashvibhute | 0:30537dec6e0b | 44 | |
akashvibhute | 0:30537dec6e0b | 45 | }; |
akashvibhute | 0:30537dec6e0b | 46 | |
akashvibhute | 0:30537dec6e0b | 47 | } |
akashvibhute | 0:30537dec6e0b | 48 | #endif |