Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template customize_stream

boost::property_tree::customize_stream

Synopsis

// In header: <boost/property_tree/stream_translator.hpp>

template<typename Ch, typename Traits, typename E, typename Enabler = void> 
struct customize_stream {

  // public static functions
  static void insert(std::basic_ostream< Ch, Traits > &, const E &) ;
  static void extract(std::basic_istream< Ch, Traits > &, E &) ;
};

Description

customize_stream public static functions

  1. static void insert(std::basic_ostream< Ch, Traits > & s, const E & e) ;
  2. static void extract(std::basic_istream< Ch, Traits > & s, E & e) ;

PrevUpHomeNext