| 48 | */ |
| 49 | template <class T> |
| 50 | void |
| 51 | SetCallbackFunction(T * object, void (T::*pMemberFunction)()) |
| 52 | { |
| 53 | m_Function = [object, pMemberFunction] { std::invoke(pMemberFunction, object); }; |
| 54 | } |
| 55 | |
| 56 | /** Set a C-Style function to be called in the Execute method */ |
| 57 | void |
nothing calls this directly
no outgoing calls
no test coverage detected