#include <ArFunctor.h>
Inheritance diagram for ArFunctor2::
Public Methods | |
virtual | ~ArFunctor2 (void) |
Destructor. | |
virtual void | invoke (void)=0 |
Invokes the functor. | |
virtual void | invoke (P1 p1)=0 |
Invokes the functor. More... | |
virtual void | invoke (P1 p1, P2 p2)=0 |
Invokes the functor. More... | |
virtual void | operator() ()=0 |
Invokes the functor. | |
virtual void | operator() (P1 p1)=0 |
Invokes the functor. More... | |
virtual void | operator() (P1 p1, P2 p2)=0 |
Invokes the functor. More... |
This is the base class for functors with 2 parameters. Code that has a reference to a functor that takes 2 parameters 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 ArGlobalFunctor2, and ArFunctor2C. |
|
Invokes the functor.
Reimplemented in ArGlobalFunctor2, and ArFunctor2C. |
|
Invokes the functor.
Reimplemented in ArGlobalFunctor2, and ArFunctor2C. |
|
Invokes the functor.
Reimplemented in ArGlobalFunctor2, and ArFunctor2C. |