#include <ArFunctor.h>
Inheritance diagram for ArFunctor1::
Public Methods | |
virtual | ~ArFunctor1 (void) |
Destructor. | |
virtual void | invoke (void)=0 |
Invokes the functor. | |
virtual void | invoke (P1 p1)=0 |
Invokes the functor. More... | |
virtual void | operator() ()=0 |
Invokes the functor. | |
virtual void | operator() (P1 p1)=0 |
Invokes the functor. More... |
This is the base class for functors with 1 parameter. Code that has a reference to a functor that takes 1 parameter should use this class name. This allows the code to know how to invoke the functor without knowing which class the member function is in.
For an overall description of functors, see ArFunctor.
|
Invokes the functor.
Reimplemented in ArGlobalFunctor1, and ArFunctor1C. |
|
Invokes the functor.
Reimplemented in ArGlobalFunctor1, and ArFunctor1C. |