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 for the latest Boost documentation.
PrevUpHomeNext

Struct order

boost::log::sinks::bounded_ordering_queue::enqueued_record::order — Ordering predicate.

Synopsis

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



// Ordering predicate.

struct order : public OrderT {
  // types
  typedef OrderT::result_type result_type;

  // construct/copy/destruct
  order();
  order(order const &);
  order(OrderT const &);

  // public member functions
  result_type operator()(enqueued_record const &, enqueued_record const &) const;
};

Description

order public construct/copy/destruct

  1. order();
  2. order(order const & that);
  3. order(OrderT const & that);

order public member functions

  1. result_type operator()(enqueued_record const & left, 
                           enqueued_record const & right) const;

PrevUpHomeNext