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

Class template to_log_manip

boost::log::to_log_manip — Generic manipulator for customizing output to log.

Synopsis

// In header: <boost/log/utility/manipulators/to_log.hpp>

template<typename T, typename TagT = void> 
class to_log_manip {
public:
  // types
  typedef T    value_type;  // Output value type. 
  typedef TagT tag_type;    // Value tag type. 

  // construct/copy/destruct
  explicit to_log_manip(value_type const &) noexcept;
  to_log_manip(to_log_manip const &) noexcept;

  // public member functions
  value_type const  & get() const noexcept;
};

Description

to_log_manip public construct/copy/destruct

  1. explicit to_log_manip(value_type const & value) noexcept;
  2. to_log_manip(to_log_manip const & that) noexcept;

to_log_manip public member functions

  1. value_type const  & get() const noexcept;

PrevUpHomeNext