| 3 | namespace DuiLib { |
| 4 | |
| 5 | CDelegateBase::CDelegateBase(void* pObject, void* pFn) |
| 6 | { |
| 7 | m_pObject = pObject; |
| 8 | m_pFn = pFn; |
| 9 | } |
| 10 | |
| 11 | CDelegateBase::CDelegateBase(const CDelegateBase& rhs) |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected