78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
// Generated by gencpp from file robot_nav_msgs/GetMapActionResult.msg
|
|
// DO NOT EDIT!
|
|
|
|
|
|
#ifndef ROBOT_NAV_MSGS_MESSAGE_GETMAPACTIONRESULT_H
|
|
#define ROBOT_NAV_MSGS_MESSAGE_GETMAPACTIONRESULT_H
|
|
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <robot_std_msgs/Header.h>
|
|
#include <actionlib_msgs/GoalStatus.h>
|
|
#include <robot_nav_msgs/GetMapResult.h>
|
|
|
|
namespace robot_nav_msgs
|
|
{
|
|
template <class ContainerAllocator>
|
|
struct GetMapActionResult_
|
|
{
|
|
typedef GetMapActionResult_<ContainerAllocator> Type;
|
|
|
|
GetMapActionResult_()
|
|
: header()
|
|
, status()
|
|
, result() {
|
|
}
|
|
GetMapActionResult_(const ContainerAllocator& _alloc)
|
|
: header(_alloc)
|
|
, status(_alloc)
|
|
, result(_alloc) {
|
|
(void)_alloc;
|
|
}
|
|
|
|
|
|
|
|
typedef ::robot_std_msgs::Header _header_type;
|
|
_header_type header;
|
|
|
|
typedef ::actionlib_msgs::GoalStatus_<ContainerAllocator> _status_type;
|
|
_status_type status;
|
|
|
|
typedef ::robot_nav_msgs::GetMapResult_<ContainerAllocator> _result_type;
|
|
_result_type result;
|
|
|
|
|
|
|
|
|
|
typedef boost::shared_ptr< ::robot_nav_msgs::GetMapActionResult_<ContainerAllocator> > Ptr;
|
|
typedef boost::shared_ptr< ::robot_nav_msgs::GetMapActionResult_<ContainerAllocator> const> ConstPtr;
|
|
|
|
}; // struct GetMapActionResult_
|
|
|
|
typedef ::robot_nav_msgs::GetMapActionResult_<std::allocator<void> > GetMapActionResult;
|
|
|
|
typedef boost::shared_ptr< ::robot_nav_msgs::GetMapActionResult > GetMapActionResultPtr;
|
|
typedef boost::shared_ptr< ::robot_nav_msgs::GetMapActionResult const> GetMapActionResultConstPtr;
|
|
|
|
template<typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator==(const ::robot_nav_msgs::GetMapActionResult_<ContainerAllocator1> & lhs, const ::robot_nav_msgs::GetMapActionResult_<ContainerAllocator2> & rhs)
|
|
{
|
|
return lhs.header == rhs.header &&
|
|
lhs.status == rhs.status &&
|
|
lhs.result == rhs.result;
|
|
}
|
|
|
|
template<typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator!=(const ::robot_nav_msgs::GetMapActionResult_<ContainerAllocator1> & lhs, const ::robot_nav_msgs::GetMapActionResult_<ContainerAllocator2> & rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace robot_nav_msgs
|
|
|
|
#endif // ROBOT_NAV_MSGS_MESSAGE_GETMAPACTIONRESULT_H
|