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