Boost C++ Libraries

PrevUpHomeNext

Struct default_formatter

boost::log::basic_formatter::default_formatter — Default formatter, always returns true.

Synopsis

// In header: <boost/log/expressions/formatter.hpp>



// Default formatter, always returns true. 

struct default_formatter {
  // types
  typedef void result_type;

  // construct/copy/destruct
  default_formatter();

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

Description

default_formatter public construct/copy/destruct

  1. default_formatter();

default_formatter public member functions

  1. result_type operator()(record_view const & rec, stream_type & strm) const;

PrevUpHomeNext