Home
last modified time | relevance | path

Searched defs:function_reference_wrapper (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/log/utility/functional/
Dfun_ref.hpp32 struct function_reference_wrapper struct
34 typedef typename FunT::result_type result_type;
36 explicit function_reference_wrapper(FunT& fun) : m_Fun(fun) {} in function_reference_wrapper() argument
38 result_type operator() () const in operator ()()
45 result_type operator() (ArgsT const&... args) const in operator ()()
51 result_type operator() (T const& arg) const in operator ()()
57 result_type operator() (T1 const& arg1, T2 const& arg2) const in operator ()()
64 FunT& m_Fun;