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 store

boost::program_options::store

Synopsis

BOOST_PROGRAM_OPTIONS_DECL void 
store(const basic_parsed_options< char > & options, variables_map & m, 
      bool utf8 = false);

Description

Stores in 'm' all options that are defined in 'options'. If 'm' already has a non-defaulted value of an option, that value is not changed, even if 'options' specify some value.


PrevUpHomeNext