Sierra Toolkit
Version of the Day
|
#include <functional_eastl.h>
Inherits eastl::unary_function< Argument, Result >.
Public Types | |
typedef Result(T::* | MemberFunction) () const |
Public Member Functions | |
EA_FORCE_INLINE | const_mem_fun_t (MemberFunction pMemberFunction) |
EA_FORCE_INLINE Result | operator() (const T *pT) const |
Protected Attributes | |
MemberFunction | mpMemberFunction |
Const member function with no arguments. Note that we inherit from unary_function<const T*, Result> instead of what the C++ standard specifies: unary_function<T*, Result>. The C++ standard is in error and this has been recognized by the defect group.
Definition at line 533 of file functional_eastl.h.