1 #ifndef PROTON_CODEC_MAP_HPP 2 #define PROTON_CODEC_MAP_HPP 25 #include "./encoder.hpp" 26 #include "./decoder.hpp" 34 template <
class K,
class T,
class C,
class A>
35 encoder& operator<<(encoder& e, const std::map<K, T, C, A>& m) {
return e << encoder::map(m); }
38 template <
class K,
class T,
class C,
class A>
44 #endif // PROTON_CODEC_MAP_HPP Experimental - Stream-like encoder from C++ values to AMQP bytes.
Definition: encoder.hpp:47
internal::enable_if< internal::is_unknown_integer< T >::value, decoder & >::type operator>>(decoder &d, T &i)
operator>> for integer types that are not covered by the standard overrides.
Definition: decoder.hpp:203
The main Proton namespace.
Definition: annotation_key.hpp:30
Experimental - Stream-like decoder from AMQP bytes to C++ values.
Definition: decoder.hpp:53