Aria  2.8.0
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 > Class Template Reference

Functor for a member function with return value and 4 parameters. More...

#include <ArFunctor.h>

Inherits ArRetFunctor4< Ret, P1, P2, P3, P4 >.

Public Member Functions

 ArRetFunctor4C ()
 Constructor.
 
 ArRetFunctor4C (T &obj, Ret(T::*func)(P1, P2, P3, P4))
 Constructor - supply function pointer. More...
 
 ArRetFunctor4C (T &obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T &obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1, P2 p2)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T &obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1, P2 p2, P3 p3)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T &obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1, P2 p2, P3 p3, P4 p4)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T *obj, Ret(T::*func)(P1, P2, P3, P4))
 Constructor - supply function pointer. More...
 
 ArRetFunctor4C (T *obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T *obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1, P2 p2)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T *obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1, P2 p2, P3 p3)
 Constructor - supply function pointer, default parameters. More...
 
 ArRetFunctor4C (T *obj, Ret(T::*func)(P1, P2, P3, P4), P1 p1, P2 p2, P3 p3, P4 p4)
 Constructor - supply function pointer, default parameters. More...
 
virtual Ret invokeR (void)
 Invokes the functor with return value.
 
virtual Ret invokeR (P1 p1)
 Invokes the functor with return value. More...
 
virtual Ret invokeR (P1 p1, P2 p2)
 Invokes the functor with return value. More...
 
virtual Ret invokeR (P1 p1, P2 p2, P3 p3)
 Invokes the functor with return value. More...
 
virtual Ret invokeR (P1 p1, P2 p2, P3 p3, P4 p4)
 Invokes the functor with return value. 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...
 
virtual void setP4 (P4 p4)
 Set the default fourth parameter. More...
 
virtual void setThis (T *obj)
 Set the 'this' pointer. More...
 
virtual void setThis (T &obj)
 Set the 'this' pointer. More...
 
virtual ~ArRetFunctor4C ()
 Destructor.
 
- Public Member Functions inherited from ArRetFunctor4< Ret, P1, P2, P3, P4 >
virtual ~ArRetFunctor4 ()
 Destructor.
 
- Public Member Functions inherited from ArRetFunctor3< Ret, P1, P2, P3 >
virtual ~ArRetFunctor3 ()
 Destructor.
 
- Public Member Functions inherited from ArRetFunctor2< Ret, P1, P2 >
virtual ~ArRetFunctor2 ()
 Destructor.
 
- Public Member Functions inherited from ArRetFunctor1< Ret, P1 >
virtual ~ArRetFunctor1 ()
 Destructor.
 
- Public Member Functions inherited from ArRetFunctor< Ret >
virtual void invoke (void)
 Invokes the functor.
 
virtual ~ArRetFunctor ()
 Destructor.
 
- Public Member Functions inherited from ArFunctor
virtual const char * getName (void)
 Gets the name of the functor.
 
virtual void setName (const char *name)
 Sets the name of the functor.
 
virtual void setNameVar (const char *name,...)
 Sets the name of the functor with formatting. More...
 
virtual ~ArFunctor ()
 Destructor.
 

Protected Attributes

Ret(T::* myFunc )(P1, P2, P3, P4)
 
T * myObj
 
P1 myP1
 
P2 myP2
 
P3 myP3
 
P4 myP4
 
- Protected Attributes inherited from ArFunctor
std::string myName
 

Detailed Description

template<class Ret, class T, class P1, class P2, class P3, class P4>
class ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >

Functor for a member function with return value and 4 parameters.

This is a class for member functions which take 4 parameters and return a value. 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

◆ ArRetFunctor4C() [1/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T &  obj,
Ret(T::*)(P1, P2, P3, P4)  func 
)
inline

Constructor - supply function pointer.

Parameters
objobject to call function on
funcmember function pointer

◆ ArRetFunctor4C() [2/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T &  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter

◆ ArRetFunctor4C() [3/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T &  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1,
P2  p2 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter
p2default second parameter

◆ ArRetFunctor4C() [4/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T &  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1,
P2  p2,
P3  p3 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter
p2default second parameter
p3default third parameter

◆ ArRetFunctor4C() [5/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T &  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1,
P2  p2,
P3  p3,
P4  p4 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter
p2default second parameter
p3default third parameter
p4default fourth parameter

◆ ArRetFunctor4C() [6/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T *  obj,
Ret(T::*)(P1, P2, P3, P4)  func 
)
inline

Constructor - supply function pointer.

Parameters
objobject to call function on
funcmember function pointer

◆ ArRetFunctor4C() [7/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T *  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter

◆ ArRetFunctor4C() [8/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T *  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1,
P2  p2 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter
p2default second parameter

◆ ArRetFunctor4C() [9/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T *  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1,
P2  p2,
P3  p3 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter
p2default second parameter
p3default third parameter

◆ ArRetFunctor4C() [10/10]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::ArRetFunctor4C ( T *  obj,
Ret(T::*)(P1, P2, P3, P4)  func,
P1  p1,
P2  p2,
P3  p3,
P4  p4 
)
inline

Constructor - supply function pointer, default parameters.

Parameters
objobject to call function on
funcmember function pointer
p1default first parameter
p2default second parameter
p3default third parameter
p4default fourth parameter

Member Function Documentation

◆ invokeR() [1/4]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual Ret ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::invokeR ( P1  p1)
inlinevirtual

Invokes the functor with return value.

Parameters
p1first parameter

Implements ArRetFunctor4< Ret, P1, P2, P3, P4 >.

◆ invokeR() [2/4]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual Ret ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::invokeR ( P1  p1,
P2  p2 
)
inlinevirtual

Invokes the functor with return value.

Parameters
p1first parameter
p2second parameter

Implements ArRetFunctor4< Ret, P1, P2, P3, P4 >.

◆ invokeR() [3/4]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual Ret ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::invokeR ( P1  p1,
P2  p2,
P3  p3 
)
inlinevirtual

Invokes the functor with return value.

Parameters
p1first parameter
p2second parameter
p3third parameter

Implements ArRetFunctor4< Ret, P1, P2, P3, P4 >.

◆ invokeR() [4/4]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual Ret ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::invokeR ( P1  p1,
P2  p2,
P3  p3,
P4  p4 
)
inlinevirtual

Invokes the functor with return value.

Parameters
p1first parameter
p2second parameter
p3third parameter
p4fourth parameter

Implements ArRetFunctor4< Ret, P1, P2, P3, P4 >.

◆ setP1()

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual void ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::setP1 ( P1  p1)
inlinevirtual

Set the default parameter.

Parameters
p1default first parameter

◆ setP2()

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual void ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::setP2 ( P2  p2)
inlinevirtual

Set the default 2nd parameter.

Parameters
p2default second parameter

◆ setP3()

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual void ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::setP3 ( P3  p3)
inlinevirtual

Set the default third parameter.

Parameters
p3default third parameter

◆ setP4()

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual void ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::setP4 ( P4  p4)
inlinevirtual

Set the default fourth parameter.

Parameters
p4default fourth parameter

◆ setThis() [1/2]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual void ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::setThis ( T *  obj)
inlinevirtual

Set the 'this' pointer.

Parameters
objthe 'this' pointer

◆ setThis() [2/2]

template<class Ret , class T , class P1 , class P2 , class P3 , class P4 >
virtual void ArRetFunctor4C< Ret, T, P1, P2, P3, P4 >::setThis ( T &  obj)
inlinevirtual

Set the 'this' pointer.

Parameters
objthe 'this' pointer

The documentation for this class was generated from the following file: