|
Public Types |
|
typedef void(* | dMethodA )() |
| | The form of a registered method.
|
|
typedef void(* | dMethodB )(char[] text) |
| | Explicit form.
|
Public Member Functions |
|
void | add (dMethodA method) |
| | Add a method to the list and enable dropping.
|
|
void | add (dMethodB method) |
| | Add a second-form method to the list and enable dropping.
|
|
void | notify (char[] text) |
| | Notify the methods that an event has occured.
|
|
void | empty () |
| | Remove all methods.
|
Public Attributes |
|
dMethodA[] | methoda |
| | The list of methods called by notify.
|
|
dMethodB[] | methodb |
| | Second list of methods called by notify.
|