rwlogo
SourcePro C++ 12.0

SourcePro® C++ API Reference Guide



   SourcePro C++
Documentation Home

RWTFunctorR1Imp< SR, S1 > Class Template Reference
[Functors]

Abstract base class for the family of functor bodies that are invoked with one caller argument and return a value. More...

#include <rw/functor/RWTFunctorR1Imp.h>

Inheritance diagram for RWTFunctorR1Imp< SR, S1 >:
RWBodyBase RWTCountingBody< RWMutexLock > RWTMonitor< RWMutexLock >

List of all members.


Detailed Description

template<class SR, class S1>
class RWTFunctorR1Imp< SR, S1 >

A function object, or a functor, encapsulates a call to an associated global or member function. When a functor is invoked, it calls the associated function.

RWTFunctorR1Imp<SR,S1> is the abstract base class for the family of functor bodies that take one caller argument at invocation time and return a value.

Each derived class name appends either aG (for global) or an M (for member), to indicate whether it is invoked upon an object. Static member functions use the G version since there is no object associated with the call.

The class name may also append A1 or A2 to indicate that it takes callee arguments at construction time. These arguments are stored and added to the caller argument at invocation time.

The six concrete class names are:

These concrete classes are templatized on the signature of the function that is encapsulated, as well as on the signature of the functor invocation.

The template parameters describe the invocation signature of the functor and the function call it encapsulates. These parameters are:

The make() function is the only member of these functor classes that is intended to be accessed directly; it is often called through one of the rwtMakeFunctorR1() convenience mechanisms. All other members must be accessed through an RWTFunctorR1<SR,S1> handle.

Examples

 #include <rw/functor/RWTFunctorR1GImp.h>
 
 int foo(float);
 
 // Create a functor that calls foo():
 RWTFunctorR1<int,float> func;
 func = RWTFunctorR1GImp<int,float,int,float>::make(foo);
 // Invoke Functor
 int result = func(7.0);
See also:
rwtMakeFunctorR1(), RWTFunctorR1<SR,S1>
 All Classes Functions Variables Typedefs Enumerations Enumerator Friends

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.