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

Function template read_info

boost::property_tree::info_parser::read_info

Synopsis

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


template<typename Ptree, typename Ch> 
  void read_info(std::basic_istream< Ch > & stream, Ptree & pt);

Description

Read INFO from a the given stream and translate it to a property tree.

[Note] Note

Replaces the existing contents. Strong exception guarantee.

Throws:

info_parser_error If the stream cannot be read, doesn't contain valid INFO, or a conversion fails.

PrevUpHomeNext