Home :: @root classes

class MemberUnaryFunctor

^ 
    extends UnaryFunctor<T> as public

********************************************************************** Represents a standard class member function that takes one argument and returns a value of the same type.

Source:
functor.h:85
Author:
Robert C. Duvall
Version:
unknown

Contents

^ 
EntityInherited FromTypeScopeShort Description
~MemberUnaryFunctordestructor publicautomatically generated
MemberUnaryFunctorconstructor public Create functor from standard member function and specific instance on which to invoke it
MemberUnaryFunctorconstructor publicautomatically generated
FunctionPtrtypedef publicundocumented
invokemethod public Invoke stored member function on stored instance
operator =operator publicautomatically generated

destructor ~MemberUnaryFunctor

? ^  > 
automatically generated
Source:
functor.h
Code:
public ~ MemberUnaryFunctor ( )

constructor MemberUnaryFunctor

? ^  < > 
Create functor from standard member function and specific instance on which to invoke it
Source:
functor.h:98
Code:
public MemberUnaryFunctor ( const Class & instance ,
FunctionPtr function ) : myInstance ( instance ) , myFunction ( function )

constructor MemberUnaryFunctor

? ^  < > 
automatically generated
Source:
functor.h
Code:
public MemberUnaryFunctor ( const MemberUnaryFunctor & )

typedef FunctionPtr

? ^  < > 
undocumented
Source:
functor.h:88
Code:
public typedef T ( Class::* FunctionPtr ) ( T )

method invoke

? ^  < > 
Invoke stored member function on stored instance
Source:
functor.h:106
Code:
public virtual T invoke ( const T & value )

operator =

? ^  < > 
automatically generated
Source:
functor.h
Code:
public MemberUnaryFunctor & operator = ( const MemberUnaryFunctor & )

Created Thu Oct 10 01:13:43 2002.
This documentation was generated automatically by
ccdoc v0.8 r26 2001/11/28 bin_opt_suncc_solaris-2.8.
Click here to submit a bug report or feature request.
Click here to return to the top of the page.