| 47 | typedef bool (T::* Fn)(void*); |
| 48 | public: |
| 49 | CDelegate(O* pObj, Fn pFn) : CDelegateBase(pObj, &pFn), m_pFn(pFn) { } |
| 50 | CDelegate(const CDelegate& rhs) : CDelegateBase(rhs) { m_pFn = rhs.m_pFn; } |
| 51 | virtual CDelegateBase* Copy() const { return new CDelegate(*this); } |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected