SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Macros | |
#define | rwtMakeFunctor0G(DR, function) |
#define | rwtMakeFunctor0GA1(DR, function, A1, a1) |
#define | rwtMakeFunctor0GA2(DR, function, A1, a1, A2, a2) |
#define | rwtMakeFunctor0GA3(DR, function, A1, a1, A2, a2, A3, a3) |
#define | rwtMakeFunctor0M(Callee, callee, DR, function) |
#define | rwtMakeFunctor0MA1(Callee, callee, DR, function, A1, a1) |
#define | rwtMakeFunctor0MA2(Callee, callee, DR, function, A1, a1, A2, a2) |
#define | rwtMakeFunctor0MA3(Callee, callee, DR, function, A1, a1, A2, a2, A3, a3) |
Functions | |
template<class Callee , class DR , class A1 , class AA1 > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), Callee &callee, DR(Callee::*function)(A1), AA1 a1) |
template<class Callee , class DR , class A1 , class A2 , class AA1 , class AA2 > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), Callee &callee, DR(Callee::*function)(A1, A2), AA1 a1, AA2 a2) |
template<class Callee , class DR , class A1 , class A2 , class A3 , class AA1 , class AA2 , class AA3 > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), Callee &callee, DR(Callee::*function)(A1, A2, A3), AA1 a1, AA2 a2, AA3 a3) |
template<class Callee , class DR > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), Callee &callee, DR(Callee::*function)(void)) |
template<class DR , class A1 , class AA1 > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), DR(*callee)(A1), AA1 a1) |
template<class DR , class A1 , class A2 , class AA1 , class AA2 > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), DR(*callee)(A1, A2), AA1 a1, AA2 a2) |
template<class DR , class A1 , class A2 , class A3 , class AA1 , class AA2 , class AA3 > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), DR(*callee)(A1, A2, A3), AA1 a1, AA2 a2, AA3 a3) |
template<class DR > | |
RWFunctor0 | rwtMakeFunctor0 (void(*caller)(void), DR(*callee)(void)) |
A function object, or functor, is an object that encapsulates a call to an associated global or member function. When a functor is invoked, it calls the associated function.
The rwtMakeFunctor0() functions and macros are provided to construct functors based on the RWFunctor0 class. The RWFunctor0 class acts as the handle for a family of functor implementation classes based on the RWFunctor0Imp class. A functor based on RWFunctor0 is invoked with no arguments and returns no value, but the implementation classes can accept functions with up to three arguments and any return type. The values for the additional arguments are defined when an implementation class instance is constructed, and are passed to the function each time the functor is invoked.
Each rwtMakeFunctor0() function or macro instantiates and constructs an appropriate functor implementation class instance and returns an RWFunctor0 handle that is bound to that instance.
rwtMakeFunctor0() comes in two flavors. First, there is a set of overloaded global function templates. Since not all compilers are able to handle templates to the degree required by these functions, we also provide a corresponding set of macros. The template functions are slightly easier to use and you only have to remember one name. The macros are more portable but they do require more arguments; and because we cannot overload macros, each must have a unique name.
In naming the macros, we have employed a convention to make the names easier to remember. Each name begins with rwtMakeFunctor0(), which will be followed by either a G
if the macro is expecting a global function, or an M
if it is expecting a member function. At that point, the name is complete if the associated global or member function takes no arguments. Otherwise we add one of A1
, A2
, or A3
for functions with 1, 2, or 3 arguments respectively. For example, you will use macro rwtMakeFunctor0G() to create a functor that calls a global function that takes no arguments. The macro rwtMakeFunctor0MA2() will create a functor that calls a member function that takes two arguments.
Example Using Templates
Example Using Macros
The macros in this section use the following naming conventions for the macro arguments:
DR | Type name of the function return value. |
function | Global function pointer. |
A1 | Type name of the first argument. |
a1 | Expression that can be converted to an instance of A1 . |
A2 | Type name of the second argument. |
a2 | Expression that can be converted to an instance of A2 . |
A3 | Type name of the third argument. |
a3 | Expression that can be converted to an instance of A3 . |
The macros in this section use the following naming conventions for the macro arguments:
Callee | Type name of the function's class. |
callee | Expression that results in a reference to a Callee instance. |
DR | Type name of the function return value. |
function | Pointer to member function of class Callee |
A1 | Type name of the first argument. |
a1 | Expression that can be converted to an instance of A1 . |
A2 | Type name of the second argument. |
a2 | Expression that can be converted to an instance of A2 . |
A3 | Type name of the third argument. |
a3 | Expression that can be converted to an instance of A3 . |
#define rwtMakeFunctor0G | ( | DR, | |
function ) |
Macro to create an RWFunctor0 set to call function()
. function must have signature DR (*)(void)
.
#define rwtMakeFunctor0GA1 | ( | DR, | |
function, | |||
A1, | |||
a1 ) |
Macro to create an RWFunctor0 set to call function(a1)
. function must have signature DR (*)(A1)
.
#define rwtMakeFunctor0GA2 | ( | DR, | |
function, | |||
A1, | |||
a1, | |||
A2, | |||
a2 ) |
Macro to create an RWFunctor0 set to call function(a1,a2)
. function must have signature DR (*)(A1,A2)
.
#define rwtMakeFunctor0GA3 | ( | DR, | |
function, | |||
A1, | |||
a1, | |||
A2, | |||
a2, | |||
A3, | |||
a3 ) |
Macro to create an RWFunctor0 set to call function(a1,a2,a3)
. function must have signature DR (*)(A1,A2,A3)
.
#define rwtMakeFunctor0M | ( | Callee, | |
callee, | |||
DR, | |||
function ) |
Macro to create an RWFunctor0 set to call callee.function()
. function must have signature DR (Caller::*)(void)
.
#define rwtMakeFunctor0MA1 | ( | Callee, | |
callee, | |||
DR, | |||
function, | |||
A1, | |||
a1 ) |
Macro to create an RWFunctor0 set to call callee.function(a1)
. function must have signature DR (Caller::*)(A1)
.
#define rwtMakeFunctor0MA2 | ( | Callee, | |
callee, | |||
DR, | |||
function, | |||
A1, | |||
a1, | |||
A2, | |||
a2 ) |
Macro to create an RWFunctor0 set to call callee.function(a1,a2)
. function must have signature DR (Caller::*)(A1,A2)
.
#define rwtMakeFunctor0MA3 | ( | Callee, | |
callee, | |||
DR, | |||
function, | |||
A1, | |||
a1, | |||
A2, | |||
a2, | |||
A3, | |||
a3 ) |
Macro to create an RWFunctor0 set to call callee.function(a1,a2,a3)
. function must have signature DR (Caller::*)(A1,A2,A3)
.
RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
Callee & | callee, | ||
DR(Callee::* | function )(A1), | ||
AA1 | a1 ) |
Template function to create an RWFunctor0 set to call callee.function(a1)
.
NULL
.A1
. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
Callee & | callee, | ||
DR(Callee::* | function )(A1, A2), | ||
AA1 | a1, | ||
AA2 | a2 ) |
Template function to create an RWFunctor0 set to call callee.function(a1,a2)
.
NULL
.A1
and A2
respectively. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
Callee & | callee, | ||
DR(Callee::* | function )(A1, A2, A3), | ||
AA1 | a1, | ||
AA2 | a2, | ||
AA3 | a3 ) |
Template function to create an RWFunctor0 set to call callee.function(a1,a2,a3)
NULL
.A1
, A2
and A3
respectively. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
Callee & | callee, | ||
DR(Callee::* | function )(void) ) |
Template function to create an RWFunctor0 set to call callee.function()
.
NULL
. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
DR(* | callee )(A1), | ||
AA1 | a1 ) |
Template function to create an RWFunctor0 set to call callee(a1)
.
NULL
.A1
. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
DR(* | callee )(A1, A2), | ||
AA1 | a1, | ||
AA2 | a2 ) |
Template function to create an RWFunctor0 set to call callee(a1,a2)
.
NULL
.A1
, and A2
respectively. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
DR(* | callee )(A1, A2, A3), | ||
AA1 | a1, | ||
AA2 | a2, | ||
AA3 | a3 ) |
Template function to create an RWFunctor0 set to call callee(a1,a2,a3)
.
NULL
.A1
, A2
and A3
respectively. RWFunctor0 rwtMakeFunctor0 | ( | void(* | caller )(void), |
DR(* | callee )(void) ) |
Template function to create an RWFunctor0 set to call callee()
.
NULL
.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |