|
| SoCallbackList () |
| Constructor and destructor.
|
|
| ~SoCallbackList () |
| Constructor and destructor.
|
|
void | addCallback (SoCallbackListCB *f, void *userData=NULL) |
| Managing callback functions At callback time, f will be called with userData as the first parameter, and callback specific data as the second parameter.
|
|
void | removeCallback (SoCallbackListCB *f, void *userData=NULL) |
| Adds a function to or removes a function from the list of callback functions.
|
|
void | clearCallbacks () |
| Clears all callback functions from the list.
|
|
int | getNumCallbacks () const |
| Returns the number of callback functions in the list.
|
|
void | invokeCallbacks (void *callbackData) |
| Invokes each callback function in the list, passing each function the user data supplied when they were registered here, and callbackData , the callback-specific data supplied by the caller.
|
|
This class manages a list of callback functions and user data. The user can add a callback function to the list, along with user data. When the callback is invoked, it is passed this user data, along with callback data specified by the invoking routine. The type of this callback data is determined by the invoking routine.
Definition at line 82 of file SoCallbackList.h.