basalt/thirdparty/ros/include/std_msgs/Time.h

196 lines
4.2 KiB
C
Raw Normal View History

2019-04-14 21:07:42 +02:00
// Generated by gencpp from file std_msgs/Time.msg
// DO NOT EDIT!
#ifndef STD_MSGS_MESSAGE_TIME_H
#define STD_MSGS_MESSAGE_TIME_H
#include <string>
#include <vector>
#include <memory>
2019-04-14 21:07:42 +02:00
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
namespace std_msgs
{
template <class ContainerAllocator>
struct Time_
{
typedef Time_<ContainerAllocator> Type;
Time_()
: data() {
}
Time_(const ContainerAllocator& _alloc)
: data() {
(void)_alloc;
}
typedef ros::Time _data_type;
_data_type data;
typedef boost::shared_ptr< ::std_msgs::Time_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::std_msgs::Time_<ContainerAllocator> const> ConstPtr;
}; // struct Time_
typedef ::std_msgs::Time_<std::allocator<void> > Time;
typedef boost::shared_ptr< ::std_msgs::Time > TimePtr;
typedef boost::shared_ptr< ::std_msgs::Time const> TimeConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::std_msgs::Time_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::std_msgs::Time_<ContainerAllocator> >::stream(s, "", v);
return s;
}
template<typename ContainerAllocator1, typename ContainerAllocator2>
bool operator==(const ::std_msgs::Time_<ContainerAllocator1> & lhs, const ::std_msgs::Time_<ContainerAllocator2> & rhs)
2019-04-14 21:07:42 +02:00
{
return lhs.data == rhs.data;
}
template<typename ContainerAllocator1, typename ContainerAllocator2>
bool operator!=(const ::std_msgs::Time_<ContainerAllocator1> & lhs, const ::std_msgs::Time_<ContainerAllocator2> & rhs)
2019-04-14 21:07:42 +02:00
{
return !(lhs == rhs);
}
2019-04-14 21:07:42 +02:00
} // namespace std_msgs
2019-04-14 21:07:42 +02:00
namespace ros
{
namespace message_traits
{
2019-04-14 21:07:42 +02:00
template <class ContainerAllocator>
struct IsMessage< ::std_msgs::Time_<ContainerAllocator> >
2019-04-14 21:07:42 +02:00
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::std_msgs::Time_<ContainerAllocator> const>
2019-04-14 21:07:42 +02:00
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::std_msgs::Time_<ContainerAllocator> >
2019-04-14 21:07:42 +02:00
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::std_msgs::Time_<ContainerAllocator> const>
2019-04-14 21:07:42 +02:00
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::std_msgs::Time_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::std_msgs::Time_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::std_msgs::Time_<ContainerAllocator> >
{
static const char* value()
{
return "cd7166c74c552c311fbcc2fe5a7bc289";
}
static const char* value(const ::std_msgs::Time_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0xcd7166c74c552c31ULL;
static const uint64_t static_value2 = 0x1fbcc2fe5a7bc289ULL;
};
template<class ContainerAllocator>
struct DataType< ::std_msgs::Time_<ContainerAllocator> >
{
static const char* value()
{
return "std_msgs/Time";
}
static const char* value(const ::std_msgs::Time_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::std_msgs::Time_<ContainerAllocator> >
{
static const char* value()
{
return "time data\n"
;
2019-04-14 21:07:42 +02:00
}
static const char* value(const ::std_msgs::Time_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::std_msgs::Time_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.data);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct Time_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::std_msgs::Time_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::std_msgs::Time_<ContainerAllocator>& v)
{
s << indent << "data: ";
Printer<ros::Time>::stream(s, indent + " ", v.data);
}
};
} // namespace message_operations
} // namespace ros
#endif // STD_MSGS_MESSAGE_TIME_H