#include <ArFunctor.h>
Inheritance diagram for ArFunctor1C::
Public Methods | |
ArFunctor1C (void) | |
Constructor. | |
ArFunctor1C (T &obj, void(T::*func)(P1)) | |
Constructor - supply function pointer. More... | |
ArFunctor1C (T &obj, void(T::*func)(P1), P1 p1) | |
Constructor - supply function pointer, default parameters. More... | |
ArFunctor1C (T *obj, void(T::*func)(P1)) | |
Constructor - supply function pointer. More... | |
ArFunctor1C (T *obj, void(T::*func)(P1), P1 p1) | |
Constructor - supply function pointer, default parameters. More... | |
virtual | ~ArFunctor1C (void) |
Destructor. | |
virtual void | invoke (void) |
Invokes the functor. | |
virtual void | invoke (P1 p1) |
Invokes the functor. More... | |
virtual void | operator() () |
Invokes the functor. | |
virtual void | operator() (P1 p1) |
Invokes the functor. More... | |
virtual void | setThis (T *obj) |
Set the 'this' pointer. More... | |
virtual void | setThis (T &obj) |
Set the 'this' pointer. More... | |
virtual void | setP1 (P1 p1) |
Set the default parameter. More... |
This is a class for member functions which take 1 parameter. This class contains the knowledge on how to call a member function on a particular instance of a class. This class should be instantiated by code that wishes to pass off a functor to another piece of code.
For an overall description of functors, see ArFunctor.
|
Constructor - supply function pointer.
|
|
Constructor - supply function pointer, default parameters.
|
|
Constructor - supply function pointer.
|
|
Constructor - supply function pointer, default parameters.
|
|
Invokes the functor.
Reimplemented from ArFunctor1. |
|
Invokes the functor.
Reimplemented from ArFunctor1. |
|
Set the default parameter.
|
|
Set the 'this' pointer.
|
|
Set the 'this' pointer.
|