Home
last modified time | relevance | path

Searched refs:_Arg (Results 1 – 1 of 1) sorted by relevance

/AOO41X/main/comphelper/inc/comphelper/
H A Dstl_types.hxx171 template <class _Tp, class _Arg>
172 class mem_fun1_t : public ::std::binary_function<_Tp*,_Arg,void>
174 typedef void (_Tp::*_fun_type)(_Arg);
177 void operator()(_Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); } in operator ()()
182 template <class _Tp, class _Arg>
183 inline mem_fun1_t<_Tp,_Arg> mem_fun(void (_Tp::*__f)(_Arg)) in mem_fun() argument
185 return mem_fun1_t<_Tp,_Arg>(__f); in mem_fun()