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 for the latest Boost documentation.
PrevUpHomeNext

Struct template customize_stream<Ch, Traits, F, typename boost::enable_if< detail::is_inexact< F > >::type>

boost::property_tree::customize_stream<Ch, Traits, F, typename boost::enable_if< detail::is_inexact< F > >::type>

Synopsis

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

template<typename Ch, typename Traits, typename F> 
struct customize_stream<Ch, Traits, F, typename boost::enable_if< detail::is_inexact< F > >::type> {

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

Description

customize_stream public static functions

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

PrevUpHomeNext