mbed client lightswitch demo

Dependencies:   mbed Socket lwip-eth lwip-sys lwip

Fork of mbed-client-classic-example-lwip by Austin Blackstone

Embed: (wiki syntax)

« Back to documentation index

FP1< R, A1 > Class Template Reference

FP1< R, A1 > Class Template Reference

A class for storing and calling a pointer to a static or member void function. More...

#include <functionpointer.h>

Public Member Functions

 FP1 (R(*function)(A1)=0)
 Create a FP, attaching a static function.
template<typename T >
 FP1 (T *object, R(T::*member)(A1))
 Create a FP, attaching a member function.
void attach (R(*function)(A1))
 Attach a static function.
template<typename T >
void attach (T *object, R(T::*member)(A1))
 Attach a member function.
call (A1 a)
 Call the attached static or member function.

Detailed Description

template<typename R, typename A1>
class FP1< R, A1 >

A class for storing and calling a pointer to a static or member void function.

Definition at line 112 of file functionpointer.h.


Constructor & Destructor Documentation

FP1 ( R(*)(A1)  function = 0 )

Create a FP, attaching a static function.

Parameters:
functionThe void static function to attach (default is none)

Definition at line 118 of file functionpointer.h.

FP1 ( T *  object,
R(T::*)(A1)  member 
)

Create a FP, attaching a member function.

Parameters:
objectThe object pointer to invoke the member function on (i.e. the this pointer)
functionThe address of the void member function to attach

Definition at line 128 of file functionpointer.h.


Member Function Documentation

void attach ( R(*)(A1)  function )

Attach a static function.

Parameters:
functionThe void static function to attach (default is none)

Definition at line 136 of file functionpointer.h.

void attach ( T *  object,
R(T::*)(A1)  member 
)

Attach a member function.

Parameters:
objectThe object pointer to invoke the member function on (i.e. the this pointer)
functionThe address of the void member function to attach

Definition at line 147 of file functionpointer.h.

R call ( A1  a )

Call the attached static or member function.

Definition at line 155 of file functionpointer.h.