Main Page   Class Hierarchy   Compound List   Compound Members  

ArFunctor3C Class Template Reference

Functor for a member function with 3 parameters. More...

#include <ArFunctor.h>

Inheritance diagram for ArFunctor3C::

ArFunctor3 ArFunctor List of all members.

Public Methods

 ArFunctor3C (void)
 Constructor.

 ArFunctor3C (T &obj, void(T::*func)(P1, P2, P3))
 Constructor - supply function pointer. More...

 ArFunctor3C (T &obj, void(T::*func)(P1, P2, P3), P1 p1)
 Constructor - supply function pointer, default parameters. More...

 ArFunctor3C (T &obj, void(T::*func)(P1, P2, P3), P1 p1, P2 p2)
 Constructor - supply function pointer, default parameters. More...

 ArFunctor3C (T &obj, void(T::*func)(P1, P2, P3), P1 p1, P2 p2, P3 p3)
 Constructor - supply function pointer, default parameters. More...

 ArFunctor3C (T *obj, void(T::*func)(P1, P2, P3))
 Constructor - supply function pointer. More...

 ArFunctor3C (T *obj, void(T::*func)(P1, P2, P3), P1 p1)
 Constructor - supply function pointer, default parameters. More...

 ArFunctor3C (T *obj, void(T::*func)(P1, P2, P3), P1 p1, P2 p2)
 Constructor - supply function pointer, default parameters. More...

 ArFunctor3C (T *obj, void(T::*func)(P1, P2, P3), P1 p1, P2 p2, P3 p3)
 Constructor - supply function pointer, default parameters. More...

virtual ~ArFunctor3C (void)
 Destructor.

virtual void invoke (void)
 Invokes the functor.

virtual void invoke (P1 p1)
 Invokes the functor. More...

virtual void invoke (P1 p1, P2 p2)
 Invokes the functor. More...

virtual void invoke (P1 p1, P2 p2, P3 p3)
 Invokes the functor. More...

virtual void operator() ()
 Invokes the functor.

virtual void operator() (P1 p1)
 Invokes the functor. More...

virtual void operator() (P1 p1, P2 p2)
 Invokes the functor. More...

virtual void operator() (P1 p1, P2 p2, P3 p3)
 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...

virtual void setP2 (P2 p2)
 Set the default 2nd parameter. More...

virtual void setP3 (P3 p3)
 Set the default third parameter. More...


Detailed Description

template<class T, class P1, class P2, class P3>
class ArFunctor3C< T, P1, P2, P3 >

Functor for a member function with 3 parameters.

This is a class for member functions which take 3 parameters. 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 & Destructor Documentation

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T &    obj,
void(T::*    func)(P1, P2, P3)
[inline]
 

Constructor - supply function pointer.

Parameters:
func  member function pointer

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T &    obj,
void(T::*    func)(P1, P2, P3),
P1    p1
[inline]
 

Constructor - supply function pointer, default parameters.

Parameters:
func  member function pointer
p1  default first parameter

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T &    obj,
void(T::*    func)(P1, P2, P3),
P1    p1,
P2    p2
[inline]
 

Constructor - supply function pointer, default parameters.

Parameters:
func  member function pointer
p1  default first parameter
p2  default second parameter

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T &    obj,
void(T::*    func)(P1, P2, P3),
P1    p1,
P2    p2,
P3    p3
[inline]
 

Constructor - supply function pointer, default parameters.

Parameters:
func  member function pointer
p1  default first parameter
p2  default second parameter
p3  default third parameter

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T *    obj,
void(T::*    func)(P1, P2, P3)
[inline]
 

Constructor - supply function pointer.

Parameters:
func  member function pointer

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T *    obj,
void(T::*    func)(P1, P2, P3),
P1    p1
[inline]
 

Constructor - supply function pointer, default parameters.

Parameters:
func  member function pointer
p1  default first parameter

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T *    obj,
void(T::*    func)(P1, P2, P3),
P1    p1,
P2    p2
[inline]
 

Constructor - supply function pointer, default parameters.

Parameters:
func  member function pointer
p1  default first parameter
p2  default second parameter

template<class T, class P1, class P2, class P3>
ArFunctor3C< T, P1, P2, P3 >::ArFunctor3C T *    obj,
void(T::*    func)(P1, P2, P3),
P1    p1,
P2    p2,
P3    p3
[inline]
 

Constructor - supply function pointer, default parameters.

Parameters:
func  member function pointer
p1  default first parameter
p2  default second parameter
p3  default third parameter


Member Function Documentation

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::invoke P1    p1,
P2    p2,
P3    p3
[inline, virtual]
 

Invokes the functor.

Parameters:
p1  first parameter
p2  second parameter
p3  third parameter

Reimplemented from ArFunctor3.

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::invoke P1    p1,
P2    p2
[inline, virtual]
 

Invokes the functor.

Parameters:
p1  first parameter
p2  second parameter

Reimplemented from ArFunctor3.

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::invoke P1    p1 [inline, virtual]
 

Invokes the functor.

Parameters:
p1  first parameter

Reimplemented from ArFunctor3.

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::operator() P1    p1,
P2    p2,
P3    p3
[inline, virtual]
 

Invokes the functor.

Parameters:
p1  first parameter
p2  second parameter

Reimplemented from ArFunctor3.

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::operator() P1    p1,
P2    p2
[inline, virtual]
 

Invokes the functor.

Parameters:
p1  first parameter
p2  second parameter

Reimplemented from ArFunctor3.

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::operator() P1    p1 [inline, virtual]
 

Invokes the functor.

Parameters:
p1  first parameter

Reimplemented from ArFunctor3.

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::setP1 P1    p1 [inline, virtual]
 

Set the default parameter.

Parameters:
p1  default first parameter

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::setP2 P2    p2 [inline, virtual]
 

Set the default 2nd parameter.

Parameters:
p2  default second parameter

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::setP3 P3    p3 [inline, virtual]
 

Set the default third parameter.

Parameters:
p3  default third parameter

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::setThis T &    obj [inline, virtual]
 

Set the 'this' pointer.

Parameters:
obj  the 'this' pointer

template<class T, class P1, class P2, class P3>
virtual void ArFunctor3C< T, P1, P2, P3 >::setThis T *    obj [inline, virtual]
 

Set the 'this' pointer.

Parameters:
obj  the 'this' pointer


The documentation for this class was generated from the following file:
Generated on Tue Nov 12 17:43:54 2002 for Aria by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001