64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
// Generated by gencpp from file nav_msgs/GetMapResult.msg
|
|
// DO NOT EDIT!
|
|
|
|
|
|
#ifndef NAV_MSGS_MESSAGE_GETMAPRESULT_H
|
|
#define NAV_MSGS_MESSAGE_GETMAPRESULT_H
|
|
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <nav_msgs/OccupancyGrid.h>
|
|
|
|
namespace nav_msgs
|
|
{
|
|
template <class ContainerAllocator>
|
|
struct GetMapResult_
|
|
{
|
|
typedef GetMapResult_<ContainerAllocator> Type;
|
|
|
|
GetMapResult_()
|
|
: map() {
|
|
}
|
|
GetMapResult_(const ContainerAllocator& _alloc)
|
|
: map(_alloc) {
|
|
(void)_alloc;
|
|
}
|
|
|
|
|
|
|
|
typedef ::nav_msgs::OccupancyGrid_<ContainerAllocator> _map_type;
|
|
_map_type map;
|
|
|
|
|
|
|
|
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapResult_<ContainerAllocator> > Ptr;
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapResult_<ContainerAllocator> const> ConstPtr;
|
|
|
|
}; // struct GetMapResult_
|
|
|
|
typedef ::nav_msgs::GetMapResult_<std::allocator<void> > GetMapResult;
|
|
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapResult > GetMapResultPtr;
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapResult const> GetMapResultConstPtr;
|
|
|
|
template<typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator==(const ::nav_msgs::GetMapResult_<ContainerAllocator1> & lhs, const ::nav_msgs::GetMapResult_<ContainerAllocator2> & rhs)
|
|
{
|
|
return lhs.map == rhs.map;
|
|
}
|
|
|
|
template<typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator!=(const ::nav_msgs::GetMapResult_<ContainerAllocator1> & lhs, const ::nav_msgs::GetMapResult_<ContainerAllocator2> & rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace nav_msgs
|
|
|
|
#endif // NAV_MSGS_MESSAGE_GETMAPRESULT_H
|