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 l2_visitor

boost::log::attribute_value_ordering::l2_visitor

Synopsis

// In header: <boost/log/utility/record_ordering.hpp>


template<typename LeftT> 
struct l2_visitor {
  // types
  typedef void result_type;

  // construct/copy/destruct
  l2_visitor(FunT const &, LeftT const &, bool &);

  // public member functions
  template<typename RightT> result_type operator()(RightT const &) const;
};

Description

l2_visitor public construct/copy/destruct

  1. l2_visitor(FunT const & fun, LeftT const & left, bool & result);

l2_visitor public member functions

  1. template<typename RightT> result_type operator()(RightT const & right) const;

PrevUpHomeNext