66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
// Generated by gencpp from file geometry_msgs/QuaternionStamped.msg
|
|
// DO NOT EDIT!
|
|
|
|
#ifndef GEOMETRY_MSGS_MESSAGE_QUATERNIONSTAMPED_H
|
|
#define GEOMETRY_MSGS_MESSAGE_QUATERNIONSTAMPED_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <std_msgs/Header.h>
|
|
#include <geometry_msgs/Quaternion.h>
|
|
|
|
namespace geometry_msgs
|
|
{
|
|
template <class ContainerAllocator>
|
|
struct QuaternionStamped_
|
|
{
|
|
typedef QuaternionStamped_<ContainerAllocator> Type;
|
|
|
|
QuaternionStamped_()
|
|
: header(), quaternion()
|
|
{
|
|
}
|
|
QuaternionStamped_(const ContainerAllocator &_alloc)
|
|
: header(_alloc), quaternion(_alloc)
|
|
{
|
|
(void)_alloc;
|
|
}
|
|
|
|
typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
|
|
_header_type header;
|
|
|
|
typedef ::geometry_msgs::Quaternion_<ContainerAllocator> _quaternion_type;
|
|
_quaternion_type quaternion;
|
|
|
|
typedef boost::shared_ptr<::geometry_msgs::QuaternionStamped_<ContainerAllocator>> Ptr;
|
|
typedef boost::shared_ptr<::geometry_msgs::QuaternionStamped_<ContainerAllocator> const> ConstPtr;
|
|
|
|
}; // struct QuaternionStamped_
|
|
|
|
typedef ::geometry_msgs::QuaternionStamped_<std::allocator<void>> QuaternionStamped;
|
|
|
|
typedef boost::shared_ptr<::geometry_msgs::QuaternionStamped> QuaternionStampedPtr;
|
|
typedef boost::shared_ptr<::geometry_msgs::QuaternionStamped const> QuaternionStampedConstPtr;
|
|
|
|
// constants requiring out of line definition
|
|
|
|
template <typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator==(const ::geometry_msgs::QuaternionStamped_<ContainerAllocator1> &lhs, const ::geometry_msgs::QuaternionStamped_<ContainerAllocator2> &rhs)
|
|
{
|
|
return lhs.header == rhs.header &&
|
|
lhs.quaternion == rhs.quaternion;
|
|
}
|
|
|
|
template <typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator!=(const ::geometry_msgs::QuaternionStamped_<ContainerAllocator1> &lhs, const ::geometry_msgs::QuaternionStamped_<ContainerAllocator2> &rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace geometry_msgs
|
|
|
|
#endif // GEOMETRY_MSGS_MESSAGE_QUATERNIONSTAMPED_H
|