#include <functionpointer.h>
|
typedef R(* | static_fp) () |
|
|
| FP2 (R(*function)(A1, A2)=0) |
|
template<typename T > |
| FP2 (T *object, R(T::*member)(A1, A2)) |
|
void | attach (R(*function)(A1, A2)) |
|
template<typename T > |
void | attach (T *object, R(T::*member)(A1, A2)) |
|
R | call (A1 a1, A2 a2) |
|
static_fp | get_function () const |
|
R | operator() (A1 a1, A2 a2) |
|
| operator bool (void) |
|
template<typename R, typename A1, typename A2>
class FP2< R, A1, A2 >
A class for storing and calling a pointer to a static or member void function.
template<typename R , typename A1 , typename A2 >
FP2< R, A1, A2 >::FP2 |
( |
R(*)(A1, A2) |
function = 0 | ) |
|
|
inline |
Create a function pointer, attaching a static function.
- Parameters
-
function | The void static function to attach (default is none). |
template<typename R , typename A1 , typename A2 >
template<typename T >
FP2< R, A1, A2 >::FP2 |
( |
T * |
object, |
|
|
R(T::*)(A1, A2) |
member |
|
) |
| |
|
inline |
Create a function pointer, attaching a member function.
- Parameters
-
object | The object pointer to invoke the member function on (the "this" pointer). |
member | The address of the void member function to attach. |
template<typename R , typename A1 , typename A2 >
void FP2< R, A1, A2 >::attach |
( |
R(*)(A1, A2) |
function | ) |
|
|
inline |
Attach a static function.
- Parameters
-
function | The void static function to attach (default is none). |
template<typename R , typename A1 , typename A2 >
template<typename T >
void FP2< R, A1, A2 >::attach |
( |
T * |
object, |
|
|
R(T::*)(A1, A2) |
member |
|
) |
| |
|
inline |
Attach a member function
- Parameters
-
object | The object pointer to invoke the member function on (the "this" pointer). |
member | The address of the void member function to attach. |
template<typename R , typename A1 , typename A2 >
R FP2< R, A1, A2 >::call |
( |
A1 |
a1, |
|
|
A2 |
a2 |
|
) |
| |
|
inline |
Call the attached static or member function.
The documentation for this class was generated from the following file: