Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef PR2_CONTROLLERS_MSGS_MESSAGE_PR2GRIPPERCOMMAND_H
00039 #define PR2_CONTROLLERS_MSGS_MESSAGE_PR2GRIPPERCOMMAND_H
00040
00041
00042 #include <string>
00043 #include <vector>
00044 #include <map>
00045
00046 #include <ros/types.h>
00047 #include <ros/serialization.h>
00048 #include <ros/builtin_message_traits.h>
00049 #include <ros/message_operations.h>
00050
00051
00052 namespace pr2_controllers_msgs
00053 {
00054 template <class ContainerAllocator>
00055 struct Pr2GripperCommand_
00056 {
00057 typedef Pr2GripperCommand_<ContainerAllocator> Type;
00058
00059 Pr2GripperCommand_()
00060 : position(0.0)
00061 , max_effort(0.0) {
00062 }
00063 Pr2GripperCommand_(const ContainerAllocator& _alloc)
00064 : position(0.0)
00065 , max_effort(0.0) {
00066 }
00067
00068
00069
00070 typedef double _position_type;
00071 _position_type position;
00072
00073 typedef double _max_effort_type;
00074 _max_effort_type max_effort;
00075
00076
00077
00078
00079 typedef boost::shared_ptr< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> > Ptr;
00080 typedef boost::shared_ptr< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> const> ConstPtr;
00081 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00082
00083 };
00084
00085 typedef ::pr2_controllers_msgs::Pr2GripperCommand_<std::allocator<void> > Pr2GripperCommand;
00086
00087 typedef boost::shared_ptr< ::pr2_controllers_msgs::Pr2GripperCommand > Pr2GripperCommandPtr;
00088 typedef boost::shared_ptr< ::pr2_controllers_msgs::Pr2GripperCommand const> Pr2GripperCommandConstPtr;
00089
00090
00091
00092
00093
00094 template<typename ContainerAllocator>
00095 std::ostream& operator<<(std::ostream& s, const ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> & v)
00096 {
00097 ros::message_operations::Printer< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >::stream(s, "", v);
00098 return s;
00099 }
00100
00101 }
00102
00103 namespace ros
00104 {
00105 namespace message_traits
00106 {
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118 template <class ContainerAllocator>
00119 struct IsFixedSize< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00120 : TrueType
00121 { };
00122
00123 template <class ContainerAllocator>
00124 struct IsFixedSize< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> const>
00125 : TrueType
00126 { };
00127
00128 template <class ContainerAllocator>
00129 struct IsMessage< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00130 : TrueType
00131 { };
00132
00133 template <class ContainerAllocator>
00134 struct IsMessage< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> const>
00135 : TrueType
00136 { };
00137
00138 template <class ContainerAllocator>
00139 struct HasHeader< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00140 : FalseType
00141 { };
00142
00143 template <class ContainerAllocator>
00144 struct HasHeader< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> const>
00145 : FalseType
00146 { };
00147
00148
00149 template<class ContainerAllocator>
00150 struct MD5Sum< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00151 {
00152 static const char* value()
00153 {
00154 return "680acaff79486f017132a7f198d40f08";
00155 }
00156
00157 static const char* value(const ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator>&) { return value(); }
00158 static const uint64_t static_value1 = 0x680acaff79486f01ULL;
00159 static const uint64_t static_value2 = 0x7132a7f198d40f08ULL;
00160 };
00161
00162 template<class ContainerAllocator>
00163 struct DataType< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00164 {
00165 static const char* value()
00166 {
00167 return "pr2_controllers_msgs/Pr2GripperCommand";
00168 }
00169
00170 static const char* value(const ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator>&) { return value(); }
00171 };
00172
00173 template<class ContainerAllocator>
00174 struct Definition< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00175 {
00176 static const char* value()
00177 {
00178 return "float64 position\n\
00179 float64 max_effort\n\
00180 \n\
00181 ";
00182 }
00183
00184 static const char* value(const ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator>&) { return value(); }
00185 };
00186
00187 }
00188 }
00189
00190 namespace ros
00191 {
00192 namespace serialization
00193 {
00194
00195 template<class ContainerAllocator> struct Serializer< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00196 {
00197 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00198 {
00199 stream.next(m.position);
00200 stream.next(m.max_effort);
00201 }
00202
00203 ROS_DECLARE_ALLINONE_SERIALIZER;
00204 };
00205
00206 }
00207 }
00208
00209 namespace ros
00210 {
00211 namespace message_operations
00212 {
00213
00214 template<class ContainerAllocator>
00215 struct Printer< ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator> >
00216 {
00217 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::pr2_controllers_msgs::Pr2GripperCommand_<ContainerAllocator>& v)
00218 {
00219 s << indent << "position: ";
00220 Printer<double>::stream(s, indent + " ", v.position);
00221 s << indent << "max_effort: ";
00222 Printer<double>::stream(s, indent + " ", v.max_effort);
00223 }
00224 };
00225
00226 }
00227 }
00228
00229 #endif // PR2_CONTROLLERS_MSGS_MESSAGE_PR2GRIPPERCOMMAND_H