Namespaces | Functions

AvroSerialize.hh File Reference

Standalone serialize functions for Avro types. More...

#include <boost/static_assert.hpp>
#include "AvroTraits.hh"

Go to the source code of this file.

Namespaces

namespace  avro
 

A bunch of templates and specializations for encoding and decoding specific types.


Functions

template<typename Writer , typename T >
void avro::serialize (Writer &s, const T &val)
 The main serializer entry point function.
template<typename Writer , typename T >
void avro::serialize (Writer &s, const T &val, const boost::false_type &)
 Type trait should be set to is_serializable in otherwise force the compiler to complain.

template<typename Writer , typename T >
void avro::serialize (Writer &s, T val, const boost::true_type &)
 The remainder of the file includes default implementations for serializable types.
template<typename Writer >
void avro::serialize (Writer &s, const std::vector< uint8_t > &val, const boost::true_type &)

Detailed Description

Standalone serialize functions for Avro types.