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

PrevUpHomeNext

Struct template function_reference_wrapper

boost::log::function_reference_wrapper — Reference wrapper for function objects.

Synopsis

// In header: <boost/log/utility/functional/fun_ref.hpp>

template<typename FunT> 
struct function_reference_wrapper {
  // types
  typedef FunT::result_type result_type;

  // public member functions
  explicit function_reference_wrapper(FunT &);
  result_type operator()() const;
  template<typename... ArgsT> result_type operator()(ArgsT const &...) const;
};

Description

function_reference_wrapper public member functions

  1. explicit function_reference_wrapper(FunT & fun);
  2. result_type operator()() const;
  3. template<typename... ArgsT> 
      result_type operator()(ArgsT const &... args) const;

PrevUpHomeNext