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

Class template basic_parsed_options

boost::program_options::basic_parsed_options —

Synopsis

template<typename charT> 
class basic_parsed_options {
public:
  // construct/copy/destruct
  basic_parsed_options(const options_description *);

  // public member functions

  std::vector< basic_option< charT > > options;
  const options_description * 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 construct/copy/destruct

  1. basic_parsed_options(const options_description * description);

basic_parsed_options public member functions

    Copyright © 2002-2004 Vladimir Prus

    PrevUpHomeNext