60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
// Generated by gencpp from file robot_std_msgs/Time.msg
|
|
// DO NOT EDIT!
|
|
|
|
#ifndef ROBOT_STD_MSGS_MESSAGE_TIME_H
|
|
#define ROBOT_STD_MSGS_MESSAGE_TIME_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#include <robot/time.h>
|
|
|
|
namespace robot_std_msgs
|
|
{
|
|
template <class ContainerAllocator>
|
|
struct Time_
|
|
{
|
|
typedef Time_<ContainerAllocator> Type;
|
|
|
|
Time_()
|
|
: data()
|
|
{
|
|
}
|
|
Time_(const ContainerAllocator &_alloc)
|
|
: data()
|
|
{
|
|
(void)_alloc;
|
|
}
|
|
|
|
typedef robot::Time _data_type;
|
|
_data_type data;
|
|
|
|
typedef std::shared_ptr<::robot_std_msgs::Time_<ContainerAllocator>> Ptr;
|
|
typedef std::shared_ptr<::robot_std_msgs::Time_<ContainerAllocator> const> ConstPtr;
|
|
|
|
}; // struct Time_
|
|
|
|
typedef ::robot_std_msgs::Time_<std::allocator<void>> Time;
|
|
|
|
typedef std::shared_ptr<::robot_std_msgs::Time> TimePtr;
|
|
typedef std::shared_ptr<::robot_std_msgs::Time const> TimeConstPtr;
|
|
|
|
// constants requiring out of line definition
|
|
|
|
template <typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator==(const ::robot_std_msgs::Time_<ContainerAllocator1> &lhs, const ::robot_std_msgs::Time_<ContainerAllocator2> &rhs)
|
|
{
|
|
return lhs.data == rhs.data;
|
|
}
|
|
|
|
template <typename ContainerAllocator1, typename ContainerAllocator2>
|
|
bool operator!=(const ::robot_std_msgs::Time_<ContainerAllocator1> &lhs, const ::robot_std_msgs::Time_<ContainerAllocator2> &rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace robot_std_msgs
|
|
|
|
#endif // ROBOT_STD_MSGS_MESSAGE_TIME_H
|