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

Function template write_info

boost::property_tree::info_parser::write_info

Synopsis

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


template<typename Ptree> 
  void write_info(const std::string & filename, const Ptree & pt, 
                  const std::locale & loc = std::locale(), 
                  const info_writer_settings< typename Ptree::key_type::value_type > & settings = info_writer_make_settings< typename Ptree::key_type::value_type >());

Description

Writes a tree to the file in INFO format. The tree's key type must be a string type, i.e. it must have a nested value_type typedef that is a valid parameter for basic_ofstream.

Parameters:

settings

The settings to use when writing the INFO data.

Throws:

info_parser_error If the file cannot be written to, or a conversion fails.

PrevUpHomeNext