template<typename... Args>
EventListener class
| Template parameters | |
|---|---|
| Args | argument types for the callback |
Contents
- Reference
An interface for event callbacks.
Private functions
- void onEvent(Args... args) pure virtual
Function documentation
template<typename... Args>
void EventListener<Args>:: onEvent(Args... args) pure virtual private
| Parameters | |
|---|---|
| args | the callback arguments |
The function to implement to receive event callbacks.