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