You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
5.6 KiB

// Generated by gencpp from file diagnostic_msgs/KeyValue.msg
// DO NOT EDIT!
#ifndef DIAGNOSTIC_MSGS_MESSAGE_KEYVALUE_H
#define DIAGNOSTIC_MSGS_MESSAGE_KEYVALUE_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
namespace diagnostic_msgs
{
template <class ContainerAllocator>
struct KeyValue_
{
typedef KeyValue_<ContainerAllocator> Type;
KeyValue_()
: key()
, value() {
}
KeyValue_(const ContainerAllocator& _alloc)
: key(_alloc)
, value(_alloc) {
(void)_alloc;
}
typedef std::basic_string<char, std::char_traits<char>, typename std::allocator_traits< ContainerAllocator >::template rebind_alloc< char > > _key_type;
_key_type key;
typedef std::basic_string<char, std::char_traits<char>, typename std::allocator_traits< ContainerAllocator >::template rebind_alloc< char > > _value_type;
_value_type value;
typedef std::shared_ptr< ::diagnostic_msgs::KeyValue_<ContainerAllocator> > Ptr;
typedef std::shared_ptr< ::diagnostic_msgs::KeyValue_<ContainerAllocator> const> ConstPtr;
}; // struct KeyValue_
typedef ::diagnostic_msgs::KeyValue_<std::allocator<void> > KeyValue;
typedef std::shared_ptr< ::diagnostic_msgs::KeyValue > KeyValuePtr;
typedef std::shared_ptr< ::diagnostic_msgs::KeyValue const> KeyValueConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::diagnostic_msgs::KeyValue_<ContainerAllocator> & v)
{
rs2rosinternal::message_operations::Printer< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace diagnostic_msgs
namespace rs2rosinternal
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False}
// {'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'diagnostic_msgs': ['/home/zivs/Desktop/diagnostic_msgs/msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
: std::false_type
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::diagnostic_msgs::KeyValue_<ContainerAllocator> const>
: std::false_type
{ };
template <class ContainerAllocator>
struct IsMessage< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
: std::true_type
{ };
template <class ContainerAllocator>
struct IsMessage< ::diagnostic_msgs::KeyValue_<ContainerAllocator> const>
: std::true_type
{ };
template <class ContainerAllocator>
struct HasHeader< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
: std::false_type
{ };
template <class ContainerAllocator>
struct HasHeader< ::diagnostic_msgs::KeyValue_<ContainerAllocator> const>
: std::false_type
{ };
template<class ContainerAllocator>
struct MD5Sum< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
{
static const char* value()
{
return "cf57fdc6617a881a88c16e768132149c";
}
static const char* value(const ::diagnostic_msgs::KeyValue_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0xcf57fdc6617a881aULL;
static const uint64_t static_value2 = 0x88c16e768132149cULL;
};
template<class ContainerAllocator>
struct DataType< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
{
static const char* value()
{
return "diagnostic_msgs/KeyValue";
}
static const char* value(const ::diagnostic_msgs::KeyValue_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
{
static const char* value()
{
return "string key # what to label this value when viewing\n\
string value # a value to track over time\n\
";
}
static const char* value(const ::diagnostic_msgs::KeyValue_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace rs2rosinternal
namespace rs2rosinternal
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.key);
stream.next(m.value);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct KeyValue_
} // namespace serialization
} // namespace rs2rosinternal
namespace rs2rosinternal
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::diagnostic_msgs::KeyValue_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::diagnostic_msgs::KeyValue_<ContainerAllocator>& v)
{
s << indent << "key: ";
Printer<std::basic_string<char, std::char_traits<char>, typename std::allocator_traits< ContainerAllocator >::template rebind_alloc< char > > >::stream(s, indent + " ", v.key);
s << indent << "value: ";
Printer<std::basic_string<char, std::char_traits<char>, typename std::allocator_traits< ContainerAllocator >::template rebind_alloc< char > > >::stream(s, indent + " ", v.value);
}
};
} // namespace message_operations
} // namespace rs2rosinternal
#endif // DIAGNOSTIC_MSGS_MESSAGE_KEYVALUE_H