Boost C++ Libraries

PrevUpHomeNext

Struct template is_filter

boost::log::filters::is_filter — A type trait to detect filters.

Synopsis

// In header: <boost/log/filters/basic_filters.hpp>

template<typename T> 
struct is_filter {
};

Description

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


PrevUpHomeNext