#include <notifier.h>
Inheritance diagram for PNotifier:
Public Member Functions | |
PNotifier (PNotifierFunction *func=NULL) | |
virtual void | operator() (PObject ¬ifier, INT extra) const |
To overcome this problem, as this mechanism is highly desirable for callback functions in the GUI part of the PTLib library, these classes and a macro are used to create all the classes and declarations to use polymorphism as the link between the caller, which has no knowledege of the function, and the receiver object and member function.
This is most often used as the notification of actions being take by interactors in the PTLib library.
PNotifier::PNotifier | ( | PNotifierFunction * | func = NULL |
) | [inline] |
Create a new notification function smart pointer.
func | Notifier function to call. |
virtual void PNotifier::operator() | ( | PObject & | notifier, | |
INT | extra | |||
) | const [inline, virtual] |
Execute the call to the actual notification function on the object instance contained in this object. This will make a polymorphic call to the function declared by the PDECLARE_NOTIFIER# macro which in turn calls the required function in the destination object.
notifier | Object that is making the notification. |
extra | Extra information that may be passed to function. |