Standalone parse functions for Avro types. More...
#include "Config.hh"
#include <boost/static_assert.hpp>
#include "AvroTraits.hh"
#include "ResolvingReader.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 Reader , typename T > | |
void | avro::parse (Reader &p, T &val) |
The main parse entry point function. | |
template<typename T > | |
void | avro::parse (ResolvingReader &p, T &val) |
template<typename Reader , typename T > | |
void | avro::translatingParse (Reader &p, T &val, const boost::false_type &) |
template<typename Reader , typename T > | |
void | avro::parse (Reader &p, T &val, const boost::false_type &) |
Type trait should be set to is_serializable in otherwise force the compiler to complain. | |
template<typename Reader > | |
void | avro::parse (Reader &p, std::vector< uint8_t > &val, const boost::true_type &) |
template<typename T > | |
void | avro::translatingParse (ResolvingReader &p, T &val, const boost::true_type &) |
Standalone parse functions for Avro types.