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 template extract_or_throw

boost::log::extract_or_throw

Synopsis

// In header: <boost/log/attributes/value_extraction.hpp>


template<typename T, typename TagT = void> 
  result_of::extract_or_throw< T, TagT >::type 
  extract_or_throw(attribute_value const & value);

Description

The function extracts an attribute value from the view. The user has to explicitly specify the type or set of possible types of the attribute value to be extracted.

Parameters:

value

Attribute value.

Returns:

The extracted value or a non-empty value_ref that refers to the value.

Throws:

An exception is thrown if the requested value cannot be extracted.

PrevUpHomeNext