EventListener.callEvent

Calls an event. Events are always called in the order they are registered, even in the inheritance.

class EventListener(O : Event, Children...)
void
callEvent
(
T : O
)
(
ref T event
)
if (
is(T == class) &&
!isAbstractClass!T
)
if (
areValidChildren!(O, Children)
)

Meta