| 30 | typedef bool (*Fn)(void*); |
| 31 | public: |
| 32 | CDelegateStatic(Fn pFn) : CDelegateBase(NULL, pFn) { } |
| 33 | CDelegateStatic(const CDelegateStatic& rhs) : CDelegateBase(rhs) { } |
| 34 | virtual CDelegateBase* Copy() const { return new CDelegateStatic(*this); } |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected