| 65 | class MemberFunctionWrapper2 : public Functor2<P1, P2> { |
| 66 | public: |
| 67 | MemberFunctionWrapper2(CALLEE &callee, const FUNC &func) : |
| 68 | Functor2<P1, P2>(functionFunctor, &callee, &func, sizeof(FUNC)) {} |
| 69 | |
| 70 | static void functionFunctor(const FunctorBase &ftor, P1 p1, P2 p2) { |
| 71 | CALLEE *callee = (CALLEE *)ftor._callee; |
nothing calls this directly
no outgoing calls
no test coverage detected