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