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

Struct template combine_requirements

boost::log::sinks::combine_requirements

Synopsis

// In header: <boost/log/sinks/frontend_requirements.hpp>

template<typename... RequirementsT> 
struct combine_requirements {
};

Description

The metafunction combines multiple requirement tags into one type. The resulting type will satisfy all specified requirements (i.e. has_requirement metafunction will return positive result).


PrevUpHomeNext