#include <func.h>
Public Types | |
| typedef Res(T::* | FuncType) (Arg1, Arg2) |
Public Types inherited from Common::BinaryFunction< Arg1, Arg2, Res > | |
| typedef Arg1 | FirstArgumentType |
| typedef Arg2 | SecondArgumentType |
| typedef Res | ResultType |
Public Member Functions | |
| Functor2Mem (T *t, const FuncType &func) | |
| bool | isValid () const |
| Res | operator() (Arg1 v1, Arg2 v2) const |
Functor object for a binary class member function. Usage is like with Functor0Mem. The resulting functor object will take two parameter though.