C# style delegate with two 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 | |
DelegateTwoParameter (T *object, void(T::*func)(ARG1 arg1, ARG2 arg2)) | |
void | Call (ARG1 arg1, ARG2 arg2) |
Static Public Member Functions | |
static RefCountPtr < IDelegateTwoParameter< ARG1, ARG2 > > | Create (T *object, void(T::*func)(ARG1 arg1, ARG2 arg2)) |
C# style delegate with two arguments for call backs by DelegateDispatch. Use in place of implemting call back interfaces to symplify code. DelegateDispatch.
Definition at line 132 of file Delegate.h.