![]() |
Kochol Game Engine
0.1.0
|
This class is for storing pointer to member functions with two argument(s). More...
#include <mem_fun.h>
Public Member Functions | |
ZFunctor2 (Tclass *obj, Treturn(Tclass::*_fun)(Targ1, Targ2)) | |
Constructor. | |
Treturn | Call (Targ1 arg1, Targ2 arg2) |
Call the user function with two argument. |
Protected Attributes | |
Tclass * | m_pObj |
Treturn(Tclass::* | m_pFun )(Targ1, Targ2) |
This class is for storing pointer to member functions with two argument(s).
|
inline |
|
inlinevirtual |
Call the user function with two argument.
Implements kge::core::Functor2< Treturn, Targ1, Targ2 >.
Definition at line 104 of file mem_fun.h.
References kge::core::ZFunctor2< Tclass, Treturn, Targ1, Targ2 >::m_pFun, and kge::core::ZFunctor2< Tclass, Treturn, Targ1, Targ2 >::m_pObj.
|
protected |
Pointer to member function
Definition at line 111 of file mem_fun.h.
Referenced by kge::core::ZFunctor2< Tclass, Treturn, Targ1, Targ2 >::Call().
|
protected |
Pointer to class object.
Definition at line 110 of file mem_fun.h.
Referenced by kge::core::ZFunctor2< Tclass, Treturn, Targ1, Targ2 >::Call().