78 lines
2.1 KiB
C++
78 lines
2.1 KiB
C++
// Generated by gencpp from file nav_msgs/GetMapActionFeedback.msg
|
|
// DO NOT EDIT!
|
|
|
|
|
|
#ifndef NAV_MSGS_MESSAGE_GETMAPACTIONFEEDBACK_H
|
|
#define NAV_MSGS_MESSAGE_GETMAPACTIONFEEDBACK_H
|
|
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <std_msgs/Header.h>
|
|
#include <actionlib_msgs/GoalStatus.h>
|
|
#include <nav_msgs/GetMapFeedback.h>
|
|
|
|
namespace nav_msgs
|
|
{
|
|
template <class ContainerAllocator>
|
|
struct GetMapActionFeedback_
|
|
{
|
|
typedef GetMapActionFeedback_<ContainerAllocator> Type;
|
|
|
|
GetMapActionFeedback_()
|
|
: header()
|
|
, status()
|
|
, feedback() {
|
|
}
|
|
GetMapActionFeedback_(const ContainerAllocator& _alloc)
|
|
: header(_alloc)
|
|
, status(_alloc)
|
|
, feedback(_alloc) {
|
|
(void)_alloc;
|
|
}
|
|
|
|
|
|
|
|
typedef ::std_msgs::Header _header_type;
|
|
_header_type header;
|
|
|
|
typedef ::actionlib_msgs::GoalStatus_<ContainerAllocator> _status_type;
|
|
_status_type status;
|
|
|
|
typedef ::nav_msgs::GetMapFeedback_<ContainerAllocator> _feedback_type;
|
|
_feedback_type feedback;
|
|
|
|
|
|
|
|
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapActionFeedback_<ContainerAllocator> > Ptr;
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapActionFeedback_<ContainerAllocator> const> ConstPtr;
|
|
|
|
}; // struct GetMapActionFeedback_
|
|
|
|
typedef ::nav_msgs::GetMapActionFeedback_<std::allocator<void> > GetMapActionFeedback;
|
|
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapActionFeedback > GetMapActionFeedbackPtr;
|
|
typedef boost::shared_ptr< ::nav_msgs::GetMapActionFeedback const> GetMapActionFeedbackConstPtr;
|
|
|
|
template<typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator==(const ::nav_msgs::GetMapActionFeedback_<ContainerAllocator1> & lhs, const ::nav_msgs::GetMapActionFeedback_<ContainerAllocator2> & rhs)
|
|
{
|
|
return lhs.header == rhs.header &&
|
|
lhs.status == rhs.status &&
|
|
lhs.feedback == rhs.feedback;
|
|
}
|
|
|
|
template<typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator!=(const ::nav_msgs::GetMapActionFeedback_<ContainerAllocator1> & lhs, const ::nav_msgs::GetMapActionFeedback_<ContainerAllocator2> & rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace nav_msgs
|
|
|
|
#endif // NAV_MSGS_MESSAGE_GETMAPACTIONFEEDBACK_H
|