...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::program_options::basic_parsed_options
// In header: <boost/program_options/parsers.hpp> template<typename charT> class basic_parsed_options { public: // construct/copy/destruct basic_parsed_options(const options_description *); std::vector< basic_option< charT > > options; const options_description * description; };
Results of parsing an input source. The primary use of this class is passing information from parsers component to value storage component. This class does not makes much sense itself.
basic_parsed_options
public
construct/copy/destructbasic_parsed_options(const options_description * xdescription);