// Generated by gencpp from file jog_msgs/JogFrame.msg // DO NOT EDIT! #ifndef JOG_MSGS_MESSAGE_JOGFRAME_H #define JOG_MSGS_MESSAGE_JOGFRAME_H #include #include #include #include #include #include #include #include #include #include namespace jog_msgs { template struct JogFrame_ { typedef JogFrame_ Type; JogFrame_() : header() , group_name() , link_name() , linear_delta() , angular_delta() , avoid_collisions(false) { } JogFrame_(const ContainerAllocator& _alloc) : header(_alloc) , group_name(_alloc) , link_name(_alloc) , linear_delta(_alloc) , angular_delta(_alloc) , avoid_collisions(false) { (void)_alloc; } typedef ::std_msgs::Header_ _header_type; _header_type header; typedef std::basic_string, typename ContainerAllocator::template rebind::other > _group_name_type; _group_name_type group_name; typedef std::basic_string, typename ContainerAllocator::template rebind::other > _link_name_type; _link_name_type link_name; typedef ::geometry_msgs::Vector3_ _linear_delta_type; _linear_delta_type linear_delta; typedef ::geometry_msgs::Vector3_ _angular_delta_type; _angular_delta_type angular_delta; typedef uint8_t _avoid_collisions_type; _avoid_collisions_type avoid_collisions; typedef boost::shared_ptr< ::jog_msgs::JogFrame_ > Ptr; typedef boost::shared_ptr< ::jog_msgs::JogFrame_ const> ConstPtr; }; // struct JogFrame_ typedef ::jog_msgs::JogFrame_ > JogFrame; typedef boost::shared_ptr< ::jog_msgs::JogFrame > JogFramePtr; typedef boost::shared_ptr< ::jog_msgs::JogFrame const> JogFrameConstPtr; // constants requiring out of line definition template std::ostream& operator<<(std::ostream& s, const ::jog_msgs::JogFrame_ & v) { ros::message_operations::Printer< ::jog_msgs::JogFrame_ >::stream(s, "", v); return s; } } // namespace jog_msgs namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True} // {'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'jog_msgs': ['/home/emanuele/Documents/GestioneMacchine/Robot_Incollaggio/Software/roboglue_ros_ws/src/jog_arm/jog_msgs/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template struct IsFixedSize< ::jog_msgs::JogFrame_ > : FalseType { }; template struct IsFixedSize< ::jog_msgs::JogFrame_ const> : FalseType { }; template struct IsMessage< ::jog_msgs::JogFrame_ > : TrueType { }; template struct IsMessage< ::jog_msgs::JogFrame_ const> : TrueType { }; template struct HasHeader< ::jog_msgs::JogFrame_ > : TrueType { }; template struct HasHeader< ::jog_msgs::JogFrame_ const> : TrueType { }; template struct MD5Sum< ::jog_msgs::JogFrame_ > { static const char* value() { return "e342f29bf6beaf00261bdae365abfff9"; } static const char* value(const ::jog_msgs::JogFrame_&) { return value(); } static const uint64_t static_value1 = 0xe342f29bf6beaf00ULL; static const uint64_t static_value2 = 0x261bdae365abfff9ULL; }; template struct DataType< ::jog_msgs::JogFrame_ > { static const char* value() { return "jog_msgs/JogFrame"; } static const char* value(const ::jog_msgs::JogFrame_&) { return value(); } }; template struct Definition< ::jog_msgs::JogFrame_ > { static const char* value() { return "# This is a message to hold data to jog by specifying a target\n\ # frame. It uses MoveIt! kinematics, so you need to specify the\n\ # JointGroup name to use in group_name. (lienar|angular)_delta is the\n\ # amount of displacement.\n\ \n\ # header message. You must set frame_id to define the reference\n\ # coordinate system of the displacament\n\ Header header\n\ \n\ # Name of JointGroup of MoveIt!\n\ string group_name\n\ \n\ # Target link name to jog. The link must be in the JoingGroup\n\ string link_name\n\ \n\ # Linear displacement vector to jog. The refrence frame is defined by\n\ # frame_id in header. Unit is in meter.\n\ geometry_msgs/Vector3 linear_delta\n\ \n\ # Angular displacement vector to jog. The refrence frame is defined by\n\ # frame_id in header. Unit is in radian.\n\ geometry_msgs/Vector3 angular_delta\n\ \n\ # It uses avoid_collisions option of MoveIt! kinematics. If it is\n\ # true, the robot doesn't move if any collisions occured.\n\ bool avoid_collisions\n\ \n\ ================================================================================\n\ MSG: std_msgs/Header\n\ # Standard metadata for higher-level stamped data types.\n\ # This is generally used to communicate timestamped data \n\ # in a particular coordinate frame.\n\ # \n\ # sequence ID: consecutively increasing ID \n\ uint32 seq\n\ #Two-integer timestamp that is expressed as:\n\ # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\ # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\ # time-handling sugar is provided by the client library\n\ time stamp\n\ #Frame this data is associated with\n\ # 0: no frame\n\ # 1: global frame\n\ string frame_id\n\ \n\ ================================================================================\n\ MSG: geometry_msgs/Vector3\n\ # This represents a vector in free space. \n\ # It is only meant to represent a direction. Therefore, it does not\n\ # make sense to apply a translation to it (e.g., when applying a \n\ # generic rigid transformation to a Vector3, tf2 will only apply the\n\ # rotation). If you want your data to be translatable too, use the\n\ # geometry_msgs/Point message instead.\n\ \n\ float64 x\n\ float64 y\n\ float64 z\n\ "; } static const char* value(const ::jog_msgs::JogFrame_&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template struct Serializer< ::jog_msgs::JogFrame_ > { template inline static void allInOne(Stream& stream, T m) { stream.next(m.header); stream.next(m.group_name); stream.next(m.link_name); stream.next(m.linear_delta); stream.next(m.angular_delta); stream.next(m.avoid_collisions); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct JogFrame_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template struct Printer< ::jog_msgs::JogFrame_ > { template static void stream(Stream& s, const std::string& indent, const ::jog_msgs::JogFrame_& v) { s << indent << "header: "; s << std::endl; Printer< ::std_msgs::Header_ >::stream(s, indent + " ", v.header); s << indent << "group_name: "; Printer, typename ContainerAllocator::template rebind::other > >::stream(s, indent + " ", v.group_name); s << indent << "link_name: "; Printer, typename ContainerAllocator::template rebind::other > >::stream(s, indent + " ", v.link_name); s << indent << "linear_delta: "; s << std::endl; Printer< ::geometry_msgs::Vector3_ >::stream(s, indent + " ", v.linear_delta); s << indent << "angular_delta: "; s << std::endl; Printer< ::geometry_msgs::Vector3_ >::stream(s, indent + " ", v.angular_delta); s << indent << "avoid_collisions: "; Printer::stream(s, indent + " ", v.avoid_collisions); } }; } // namespace message_operations } // namespace ros #endif // JOG_MSGS_MESSAGE_JOGFRAME_H