// Generated by gencpp from file geometry_msgs/Pose.msg // DO NOT EDIT! #ifndef GEOMETRY_MSGS_MESSAGE_POSE_H #define GEOMETRY_MSGS_MESSAGE_POSE_H #include #include #include #include #include #include #include #include #include namespace geometry_msgs { template struct Pose_ { typedef Pose_ Type; Pose_() : position() , orientation() { } Pose_(const ContainerAllocator& _alloc) : position(_alloc) , orientation(_alloc) { (void)_alloc; } typedef ::geometry_msgs::Point_ _position_type; _position_type position; typedef ::geometry_msgs::Quaternion_ _orientation_type; _orientation_type orientation; typedef boost::shared_ptr< ::geometry_msgs::Pose_ > Ptr; typedef boost::shared_ptr< ::geometry_msgs::Pose_ const> ConstPtr; }; // struct Pose_ typedef ::geometry_msgs::Pose_ > Pose; typedef boost::shared_ptr< ::geometry_msgs::Pose > PosePtr; typedef boost::shared_ptr< ::geometry_msgs::Pose const> PoseConstPtr; // constants requiring out of line definition template std::ostream& operator<<(std::ostream& s, const ::geometry_msgs::Pose_ & v) { ros::message_operations::Printer< ::geometry_msgs::Pose_ >::stream(s, "", v); return s; } template bool operator==(const ::geometry_msgs::Pose_ & lhs, const ::geometry_msgs::Pose_ & rhs) { return lhs.position == rhs.position && lhs.orientation == rhs.orientation; } template bool operator!=(const ::geometry_msgs::Pose_ & lhs, const ::geometry_msgs::Pose_ & rhs) { return !(lhs == rhs); } } // namespace geometry_msgs namespace ros { namespace message_traits { template struct IsMessage< ::geometry_msgs::Pose_ > : TrueType { }; template struct IsMessage< ::geometry_msgs::Pose_ const> : TrueType { }; template struct IsFixedSize< ::geometry_msgs::Pose_ > : TrueType { }; template struct IsFixedSize< ::geometry_msgs::Pose_ const> : TrueType { }; template struct HasHeader< ::geometry_msgs::Pose_ > : FalseType { }; template struct HasHeader< ::geometry_msgs::Pose_ const> : FalseType { }; template struct MD5Sum< ::geometry_msgs::Pose_ > { static const char* value() { return "e45d45a5a1ce597b249e23fb30fc871f"; } static const char* value(const ::geometry_msgs::Pose_&) { return value(); } static const uint64_t static_value1 = 0xe45d45a5a1ce597bULL; static const uint64_t static_value2 = 0x249e23fb30fc871fULL; }; template struct DataType< ::geometry_msgs::Pose_ > { static const char* value() { return "geometry_msgs/Pose"; } static const char* value(const ::geometry_msgs::Pose_&) { return value(); } }; template struct Definition< ::geometry_msgs::Pose_ > { static const char* value() { return "# A representation of pose in free space, composed of position and orientation. \n" "Point position\n" "Quaternion orientation\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Point\n" "# This contains the position of a point in free space\n" "float64 x\n" "float64 y\n" "float64 z\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Quaternion\n" "# This represents an orientation in free space in quaternion form.\n" "\n" "float64 x\n" "float64 y\n" "float64 z\n" "float64 w\n" ; } static const char* value(const ::geometry_msgs::Pose_&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template struct Serializer< ::geometry_msgs::Pose_ > { template inline static void allInOne(Stream& stream, T m) { stream.next(m.position); stream.next(m.orientation); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct Pose_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template struct Printer< ::geometry_msgs::Pose_ > { template static void stream(Stream& s, const std::string& indent, const ::geometry_msgs::Pose_& v) { s << indent << "position: "; s << std::endl; Printer< ::geometry_msgs::Point_ >::stream(s, indent + " ", v.position); s << indent << "orientation: "; s << std::endl; Printer< ::geometry_msgs::Quaternion_ >::stream(s, indent + " ", v.orientation); } }; } // namespace message_operations } // namespace ros #endif // GEOMETRY_MSGS_MESSAGE_POSE_H