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