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 current_scope

boost::log::current_scope

Synopsis

// In header: <boost/log/support/exception.hpp>


current_scope_info current_scope();

Description

The function returns an error information object that contains current stack of scopes. This information can then be attached to an exception and extracted at the catch site. The extracted scope list won't be affected by any scope changes that may happen during the exception propagation.

[Note] Note

See the named_scope attribute documentation on how to maintain scope list.


PrevUpHomeNext