Boost C++ Libraries

PrevUpHomeNext

Struct template is_formatter

boost::log::formatters::is_formatter — A type trait to detect formatters.

Synopsis

// In header: <boost/log/formatters/basic_formatters.hpp>

template<typename T> 
struct is_formatter {
};

Description

The is_formatter class is a metafunction that returns true if it is instantiated with a formatter type and false otherwise.


PrevUpHomeNext