| 54 | class FunctionWrapper2 : public Functor2<P1, P2> { |
| 55 | public: |
| 56 | FunctionWrapper2(FUNC func) : |
| 57 | Functor2<P1, P2>(functionFunctor, nullptr, (void *)func, 0) {} |
| 58 | |
| 59 | static void functionFunctor(const FunctorBase &ftor, P1 p1, P2 p2) { |
| 60 | (FUNC(ftor._callback))(p1, p2); |
nothing calls this directly
no outgoing calls
no test coverage detected