Method to set the object and member function pointers that will be called in the callback.
| 51 | // that will be called in the callback. |
| 52 | // |
| 53 | void SetCallbackFunction(T* object, TMemberFunctionPointer memberFunction) |
| 54 | { |
| 55 | ObjectThis = object; |
| 56 | MemberFunction = memberFunction; |
| 57 | } |
| 58 | |
| 59 | // |
| 60 | // Execute method implementation from DICOMCallback. |
no outgoing calls
no test coverage detected