C# style delegate with three arguments for call backs by DelegateDispatch. Use in place of implemting call back interfaces to symplify code. DelegateDispatch. More...
#include <Delegate.h>
Public Member Functions | |
DelegateThreeParameter (T *object, void(T::*func)(ARG1 arg1, ARG2 arg2, ARG3 arg3)) | |
void | Call (ARG1 arg1, ARG2 arg2, ARG3 arg3) |
Static Public Member Functions | |
static RefCountPtr < IDelegateThreeParameter < ARG1, ARG2, ARG3 > > | Create (T *object, void(T::*func)(ARG1 arg1, ARG2 arg2, ARG3 arg3)) |
C# style delegate with three arguments for call backs by DelegateDispatch. Use in place of implemting call back interfaces to symplify code. DelegateDispatch.
Definition at line 172 of file Delegate.h.