Home | History | Annotate | Download | only in temp.variadic

Lines Matching defs:invoker

31   function() : invoker (0) { }
32 function(const function& other) : invoker(0) {
33 if (other.invoker)
34 invoker = other.invoker->clone();
37 template<typename F> function(const F& f) : invoker(0) {
38 invoker = new functor_invoker<F, R, Args...>(f);
42 if (invoker)
43 delete invoker;
58 invoker_base<R, Args...>* tmp = invoker;
59 invoker = other.invoker;
60 other.invoker = tmp;
64 return invoker->invoke(args...);
68 invoker_base<R, Args...>* invoker;