61 lines
2.0 KiB
C++
61 lines
2.0 KiB
C++
// Generated by gencpp from file robot_std_msgs/UInt64MultiArray.msg
|
|
// DO NOT EDIT!
|
|
|
|
#ifndef ROBOT_STD_MSGS_MESSAGE_UINT64MULTIARRAY_H
|
|
#define ROBOT_STD_MSGS_MESSAGE_UINT64MULTIARRAY_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <robot_std_msgs/MultiArrayLayout.h>
|
|
|
|
namespace robot_std_msgs
|
|
{
|
|
template <class ContainerAllocator>
|
|
struct UInt64MultiArray_
|
|
{
|
|
typedef UInt64MultiArray_<ContainerAllocator> Type;
|
|
|
|
UInt64MultiArray_()
|
|
: layout(), data()
|
|
{
|
|
}
|
|
UInt64MultiArray_(const ContainerAllocator &_alloc)
|
|
: layout(_alloc), data(_alloc)
|
|
{
|
|
(void)_alloc;
|
|
}
|
|
|
|
typedef ::robot_std_msgs::MultiArrayLayout_<ContainerAllocator> _layout_type;
|
|
_layout_type layout;
|
|
|
|
typedef std::vector<uint64_t, typename std::allocator_traits<ContainerAllocator>::template rebind_alloc<uint64_t>> _data_type;
|
|
_data_type data;
|
|
|
|
typedef boost::shared_ptr<::robot_std_msgs::UInt64MultiArray_<ContainerAllocator>> Ptr;
|
|
typedef boost::shared_ptr<::robot_std_msgs::UInt64MultiArray_<ContainerAllocator> const> ConstPtr;
|
|
|
|
}; // struct UInt64MultiArray_
|
|
|
|
typedef ::robot_std_msgs::UInt64MultiArray_<std::allocator<void>> UInt64MultiArray;
|
|
|
|
typedef boost::shared_ptr<::robot_std_msgs::UInt64MultiArray> UInt64MultiArrayPtr;
|
|
typedef boost::shared_ptr<::robot_std_msgs::UInt64MultiArray const> UInt64MultiArrayConstPtr;
|
|
|
|
template <typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator==(const ::robot_std_msgs::UInt64MultiArray_<ContainerAllocator1> &lhs, const ::robot_std_msgs::UInt64MultiArray_<ContainerAllocator2> &rhs)
|
|
{
|
|
return lhs.layout == rhs.layout &&
|
|
lhs.data == rhs.data;
|
|
}
|
|
|
|
template <typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator!=(const ::robot_std_msgs::UInt64MultiArray_<ContainerAllocator1> &lhs, const ::robot_std_msgs::UInt64MultiArray_<ContainerAllocator2> &rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace robot_std_msgs
|
|
|
|
#endif // ROBOT_STD_MSGS_MESSAGE_UINT64MULTIARRAY_H
|