$search
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-electric-p2os/doc_stacks/2013-03-01_16-19-23.450784/p2os/p2os_driver/msg/LiftState.msg */ 00002 #ifndef P2OS_DRIVER_MESSAGE_LIFTSTATE_H 00003 #define P2OS_DRIVER_MESSAGE_LIFTSTATE_H 00004 #include <string> 00005 #include <vector> 00006 #include <map> 00007 #include <ostream> 00008 #include "ros/serialization.h" 00009 #include "ros/builtin_message_traits.h" 00010 #include "ros/message_operations.h" 00011 #include "ros/time.h" 00012 00013 #include "ros/macros.h" 00014 00015 #include "ros/assert.h" 00016 00017 00018 namespace p2os_driver 00019 { 00020 template <class ContainerAllocator> 00021 struct LiftState_ { 00022 typedef LiftState_<ContainerAllocator> Type; 00023 00024 LiftState_() 00025 : state(0) 00026 , dir(0) 00027 , position(0.0) 00028 { 00029 } 00030 00031 LiftState_(const ContainerAllocator& _alloc) 00032 : state(0) 00033 , dir(0) 00034 , position(0.0) 00035 { 00036 } 00037 00038 typedef int32_t _state_type; 00039 int32_t state; 00040 00041 typedef int32_t _dir_type; 00042 int32_t dir; 00043 00044 typedef float _position_type; 00045 float position; 00046 00047 00048 private: 00049 static const char* __s_getDataType_() { return "p2os_driver/LiftState"; } 00050 public: 00051 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); } 00052 00053 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); } 00054 00055 private: 00056 static const char* __s_getMD5Sum_() { return "4dcc2e41838611193ef6b9f90c9be41f"; } 00057 public: 00058 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); } 00059 00060 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); } 00061 00062 private: 00063 static const char* __s_getMessageDefinition_() { return "# direction -1 is downard, +1 is upward, 0 is stationary\n\ 00064 int32 state\n\ 00065 int32 dir\n\ 00066 float32 position\n\ 00067 \n\ 00068 "; } 00069 public: 00070 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); } 00071 00072 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); } 00073 00074 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const 00075 { 00076 ros::serialization::OStream stream(write_ptr, 1000000000); 00077 ros::serialization::serialize(stream, state); 00078 ros::serialization::serialize(stream, dir); 00079 ros::serialization::serialize(stream, position); 00080 return stream.getData(); 00081 } 00082 00083 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr) 00084 { 00085 ros::serialization::IStream stream(read_ptr, 1000000000); 00086 ros::serialization::deserialize(stream, state); 00087 ros::serialization::deserialize(stream, dir); 00088 ros::serialization::deserialize(stream, position); 00089 return stream.getData(); 00090 } 00091 00092 ROS_DEPRECATED virtual uint32_t serializationLength() const 00093 { 00094 uint32_t size = 0; 00095 size += ros::serialization::serializationLength(state); 00096 size += ros::serialization::serializationLength(dir); 00097 size += ros::serialization::serializationLength(position); 00098 return size; 00099 } 00100 00101 typedef boost::shared_ptr< ::p2os_driver::LiftState_<ContainerAllocator> > Ptr; 00102 typedef boost::shared_ptr< ::p2os_driver::LiftState_<ContainerAllocator> const> ConstPtr; 00103 boost::shared_ptr<std::map<std::string, std::string> > __connection_header; 00104 }; // struct LiftState 00105 typedef ::p2os_driver::LiftState_<std::allocator<void> > LiftState; 00106 00107 typedef boost::shared_ptr< ::p2os_driver::LiftState> LiftStatePtr; 00108 typedef boost::shared_ptr< ::p2os_driver::LiftState const> LiftStateConstPtr; 00109 00110 00111 template<typename ContainerAllocator> 00112 std::ostream& operator<<(std::ostream& s, const ::p2os_driver::LiftState_<ContainerAllocator> & v) 00113 { 00114 ros::message_operations::Printer< ::p2os_driver::LiftState_<ContainerAllocator> >::stream(s, "", v); 00115 return s;} 00116 00117 } // namespace p2os_driver 00118 00119 namespace ros 00120 { 00121 namespace message_traits 00122 { 00123 template<class ContainerAllocator> struct IsMessage< ::p2os_driver::LiftState_<ContainerAllocator> > : public TrueType {}; 00124 template<class ContainerAllocator> struct IsMessage< ::p2os_driver::LiftState_<ContainerAllocator> const> : public TrueType {}; 00125 template<class ContainerAllocator> 00126 struct MD5Sum< ::p2os_driver::LiftState_<ContainerAllocator> > { 00127 static const char* value() 00128 { 00129 return "4dcc2e41838611193ef6b9f90c9be41f"; 00130 } 00131 00132 static const char* value(const ::p2os_driver::LiftState_<ContainerAllocator> &) { return value(); } 00133 static const uint64_t static_value1 = 0x4dcc2e4183861119ULL; 00134 static const uint64_t static_value2 = 0x3ef6b9f90c9be41fULL; 00135 }; 00136 00137 template<class ContainerAllocator> 00138 struct DataType< ::p2os_driver::LiftState_<ContainerAllocator> > { 00139 static const char* value() 00140 { 00141 return "p2os_driver/LiftState"; 00142 } 00143 00144 static const char* value(const ::p2os_driver::LiftState_<ContainerAllocator> &) { return value(); } 00145 }; 00146 00147 template<class ContainerAllocator> 00148 struct Definition< ::p2os_driver::LiftState_<ContainerAllocator> > { 00149 static const char* value() 00150 { 00151 return "# direction -1 is downard, +1 is upward, 0 is stationary\n\ 00152 int32 state\n\ 00153 int32 dir\n\ 00154 float32 position\n\ 00155 \n\ 00156 "; 00157 } 00158 00159 static const char* value(const ::p2os_driver::LiftState_<ContainerAllocator> &) { return value(); } 00160 }; 00161 00162 template<class ContainerAllocator> struct IsFixedSize< ::p2os_driver::LiftState_<ContainerAllocator> > : public TrueType {}; 00163 } // namespace message_traits 00164 } // namespace ros 00165 00166 namespace ros 00167 { 00168 namespace serialization 00169 { 00170 00171 template<class ContainerAllocator> struct Serializer< ::p2os_driver::LiftState_<ContainerAllocator> > 00172 { 00173 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) 00174 { 00175 stream.next(m.state); 00176 stream.next(m.dir); 00177 stream.next(m.position); 00178 } 00179 00180 ROS_DECLARE_ALLINONE_SERIALIZER; 00181 }; // struct LiftState_ 00182 } // namespace serialization 00183 } // namespace ros 00184 00185 namespace ros 00186 { 00187 namespace message_operations 00188 { 00189 00190 template<class ContainerAllocator> 00191 struct Printer< ::p2os_driver::LiftState_<ContainerAllocator> > 00192 { 00193 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::p2os_driver::LiftState_<ContainerAllocator> & v) 00194 { 00195 s << indent << "state: "; 00196 Printer<int32_t>::stream(s, indent + " ", v.state); 00197 s << indent << "dir: "; 00198 Printer<int32_t>::stream(s, indent + " ", v.dir); 00199 s << indent << "position: "; 00200 Printer<float>::stream(s, indent + " ", v.position); 00201 } 00202 }; 00203 00204 00205 } // namespace message_operations 00206 } // namespace ros 00207 00208 #endif // P2OS_DRIVER_MESSAGE_LIFTSTATE_H 00209