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_ini

boost::property_tree::ini_parser::read_ini

Synopsis

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


template<typename Ptree> 
  void read_ini(std::basic_istream< typename Ptree::key_type::value_type > & stream, 
                Ptree & pt);

Description

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

[Note] Note

Clears existing contents of property tree. In case of error the property tree is not modified.

Parameters:

pt

The property tree to populate.

stream

Stream from which to read in the property tree.

Throws:

ini_parser_error If a format violation is found.

PrevUpHomeNext