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 template output_visitor

boost::log::tuple_manipulator<TupleT, void>::output_visitor

Synopsis

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


template<typename StreamT> 
struct output_visitor {
  // types
  typedef void result_type;

  // construct/copy/destruct
  explicit output_visitor(StreamT &) noexcept;

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

Description

output_visitor public construct/copy/destruct

  1. explicit output_visitor(StreamT & stream) noexcept;

output_visitor public member functions

  1. template<typename T> result_type operator()(T const & elem) const;

PrevUpHomeNext