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