![]() |
Andrey Semashev
26.11.2007
The header contains implementation of a named scope formatter.
namespace boost { namespace log { namespace formatters { template<typename CharT, typename ExceptionPolicyT> class fmt_named_scope; // Scope iteration directions. enum scope_iteration_direction { forward, reverse }; template<typename CharT, typename... ArgsT> fmt_named_scope< CharT, throw_policy > named_scope(std::basic_string< CharT > const &, ArgsT...const &); template<typename CharT, typename... ArgsT> fmt_named_scope< CharT, no_throw_policy > named_scope(std::basic_string< CharT > const &, ArgsT...const &, std::nothrow_t const &); } } }