Boost C++ Libraries

PrevUpHomeNext

Header <boost/log/filters/attr.hpp>

Andrey Semashev

22.04.2007

The header contains implementation of a generic attribute placeholder in filters.

namespace boost {
  namespace log {
    namespace filters {
      template<typename CharT, typename FunT, typename AttributeValueTypesT, 
               typename ExceptionPolicyT> 
        class flt_attr;
      template<typename AttributeValueTypesT, typename CharT> 
        implementation_defined attr(const CharT *);
      template<typename AttributeValueTypesT, typename CharT> 
        implementation_defined attr(std::basic_string< CharT > const &);
      template<typename AttributeValueTypesT, typename CharT> 
        implementation_defined attr(const CharT *, std::nothrow_t const &);
      template<typename AttributeValueTypesT, typename CharT> 
        implementation_defined 
        attr(std::basic_string< CharT > const &, std::nothrow_t const &);
    }
  }
}

PrevUpHomeNext