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 value

boost::program_options::value

Synopsis

// In header: <boost/program_options/value_semantic.hpp>


template<typename T> typed_value< T > * value();
template<typename T> typed_value< T > * value(T * v);

Description

Creates a typed_value<T> instance. This function is the primary method to create value_semantic instance for a specific type, which can later be passed to 'option_description' constructor. The second overload is used when it's additionally desired to store the value of option into program variable.


PrevUpHomeNext