123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- // Generated by gencpp from file costmap_2d/VoxelGrid.msg
- // DO NOT EDIT!
- #ifndef COSTMAP_2D_MESSAGE_VOXELGRID_H
- #define COSTMAP_2D_MESSAGE_VOXELGRID_H
- #include <string>
- #include <vector>
- #include <memory>
- #include <ros/types.h>
- #include <ros/serialization.h>
- #include <ros/builtin_message_traits.h>
- #include <ros/message_operations.h>
- #include <std_msgs/Header.h>
- #include <geometry_msgs/Point32.h>
- #include <geometry_msgs/Vector3.h>
- namespace costmap_2d
- {
- template <class ContainerAllocator>
- struct VoxelGrid_
- {
- typedef VoxelGrid_<ContainerAllocator> Type;
- VoxelGrid_()
- : header()
- , data()
- , origin()
- , resolutions()
- , size_x(0)
- , size_y(0)
- , size_z(0) {
- }
- VoxelGrid_(const ContainerAllocator& _alloc)
- : header(_alloc)
- , data(_alloc)
- , origin(_alloc)
- , resolutions(_alloc)
- , size_x(0)
- , size_y(0)
- , size_z(0) {
- (void)_alloc;
- }
- typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
- _header_type header;
- typedef std::vector<uint32_t, typename std::allocator_traits<ContainerAllocator>::template rebind_alloc<uint32_t>> _data_type;
- _data_type data;
- typedef ::geometry_msgs::Point32_<ContainerAllocator> _origin_type;
- _origin_type origin;
- typedef ::geometry_msgs::Vector3_<ContainerAllocator> _resolutions_type;
- _resolutions_type resolutions;
- typedef uint32_t _size_x_type;
- _size_x_type size_x;
- typedef uint32_t _size_y_type;
- _size_y_type size_y;
- typedef uint32_t _size_z_type;
- _size_z_type size_z;
- typedef boost::shared_ptr< ::costmap_2d::VoxelGrid_<ContainerAllocator> > Ptr;
- typedef boost::shared_ptr< ::costmap_2d::VoxelGrid_<ContainerAllocator> const> ConstPtr;
- }; // struct VoxelGrid_
- typedef ::costmap_2d::VoxelGrid_<std::allocator<void> > VoxelGrid;
- typedef boost::shared_ptr< ::costmap_2d::VoxelGrid > VoxelGridPtr;
- typedef boost::shared_ptr< ::costmap_2d::VoxelGrid const> VoxelGridConstPtr;
- // constants requiring out of line definition
- template<typename ContainerAllocator>
- std::ostream& operator<<(std::ostream& s, const ::costmap_2d::VoxelGrid_<ContainerAllocator> & v)
- {
- ros::message_operations::Printer< ::costmap_2d::VoxelGrid_<ContainerAllocator> >::stream(s, "", v);
- return s;
- }
- template<typename ContainerAllocator1, typename ContainerAllocator2>
- bool operator==(const ::costmap_2d::VoxelGrid_<ContainerAllocator1> & lhs, const ::costmap_2d::VoxelGrid_<ContainerAllocator2> & rhs)
- {
- return lhs.header == rhs.header &&
- lhs.data == rhs.data &&
- lhs.origin == rhs.origin &&
- lhs.resolutions == rhs.resolutions &&
- lhs.size_x == rhs.size_x &&
- lhs.size_y == rhs.size_y &&
- lhs.size_z == rhs.size_z;
- }
- template<typename ContainerAllocator1, typename ContainerAllocator2>
- bool operator!=(const ::costmap_2d::VoxelGrid_<ContainerAllocator1> & lhs, const ::costmap_2d::VoxelGrid_<ContainerAllocator2> & rhs)
- {
- return !(lhs == rhs);
- }
- } // namespace costmap_2d
- namespace ros
- {
- namespace message_traits
- {
- template <class ContainerAllocator>
- struct IsFixedSize< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- : FalseType
- { };
- template <class ContainerAllocator>
- struct IsFixedSize< ::costmap_2d::VoxelGrid_<ContainerAllocator> const>
- : FalseType
- { };
- template <class ContainerAllocator>
- struct IsMessage< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- : TrueType
- { };
- template <class ContainerAllocator>
- struct IsMessage< ::costmap_2d::VoxelGrid_<ContainerAllocator> const>
- : TrueType
- { };
- template <class ContainerAllocator>
- struct HasHeader< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- : TrueType
- { };
- template <class ContainerAllocator>
- struct HasHeader< ::costmap_2d::VoxelGrid_<ContainerAllocator> const>
- : TrueType
- { };
- template<class ContainerAllocator>
- struct MD5Sum< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- {
- static const char* value()
- {
- return "48a040827e1322073d78ece5a497029c";
- }
- static const char* value(const ::costmap_2d::VoxelGrid_<ContainerAllocator>&) { return value(); }
- static const uint64_t static_value1 = 0x48a040827e132207ULL;
- static const uint64_t static_value2 = 0x3d78ece5a497029cULL;
- };
- template<class ContainerAllocator>
- struct DataType< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- {
- static const char* value()
- {
- return "costmap_2d/VoxelGrid";
- }
- static const char* value(const ::costmap_2d::VoxelGrid_<ContainerAllocator>&) { return value(); }
- };
- template<class ContainerAllocator>
- struct Definition< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- {
- static const char* value()
- {
- return "Header header\n"
- "uint32[] data\n"
- "geometry_msgs/Point32 origin\n"
- "geometry_msgs/Vector3 resolutions\n"
- "uint32 size_x\n"
- "uint32 size_y\n"
- "uint32 size_z\n"
- "\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"
- "string frame_id\n"
- "\n"
- "================================================================================\n"
- "MSG: geometry_msgs/Point32\n"
- "# This contains the position of a point in free space(with 32 bits of precision).\n"
- "# It is recommeded to use Point wherever possible instead of Point32. \n"
- "# \n"
- "# This recommendation is to promote interoperability. \n"
- "#\n"
- "# This message is designed to take up less space when sending\n"
- "# lots of points at once, as in the case of a PointCloud. \n"
- "\n"
- "float32 x\n"
- "float32 y\n"
- "float32 z\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 ::costmap_2d::VoxelGrid_<ContainerAllocator>&) { return value(); }
- };
- } // namespace message_traits
- } // namespace ros
- namespace ros
- {
- namespace serialization
- {
- template<class ContainerAllocator> struct Serializer< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- {
- template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
- {
- stream.next(m.header);
- stream.next(m.data);
- stream.next(m.origin);
- stream.next(m.resolutions);
- stream.next(m.size_x);
- stream.next(m.size_y);
- stream.next(m.size_z);
- }
- ROS_DECLARE_ALLINONE_SERIALIZER
- }; // struct VoxelGrid_
- } // namespace serialization
- } // namespace ros
- namespace ros
- {
- namespace message_operations
- {
- template<class ContainerAllocator>
- struct Printer< ::costmap_2d::VoxelGrid_<ContainerAllocator> >
- {
- template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::costmap_2d::VoxelGrid_<ContainerAllocator>& v)
- {
- s << indent << "header: ";
- s << std::endl;
- Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
- s << indent << "data[]" << std::endl;
- for (size_t i = 0; i < v.data.size(); ++i)
- {
- s << indent << " data[" << i << "]: ";
- Printer<uint32_t>::stream(s, indent + " ", v.data[i]);
- }
- s << indent << "origin: ";
- s << std::endl;
- Printer< ::geometry_msgs::Point32_<ContainerAllocator> >::stream(s, indent + " ", v.origin);
- s << indent << "resolutions: ";
- s << std::endl;
- Printer< ::geometry_msgs::Vector3_<ContainerAllocator> >::stream(s, indent + " ", v.resolutions);
- s << indent << "size_x: ";
- Printer<uint32_t>::stream(s, indent + " ", v.size_x);
- s << indent << "size_y: ";
- Printer<uint32_t>::stream(s, indent + " ", v.size_y);
- s << indent << "size_z: ";
- Printer<uint32_t>::stream(s, indent + " ", v.size_z);
- }
- };
- } // namespace message_operations
- } // namespace ros
- #endif // COSTMAP_2D_MESSAGE_VOXELGRID_H
|