![]() |
DSC Engine
|
Go to the source code of this file.
Classes | |
| class | DSC::EventHandlerContainer |
| class | DSC::StaticEventHandlerContainer |
| class | DSC::NonStaticEventHandlerContainer< C > |
| class | DSC::Event |
| Class responsible with event registration and execution. More... | |
Typedefs | |
| typedef void(* | DSC::StaticEventHandler) (void *sender, void *args) |
| Function type to be executed when event fires More... | |
| template<class C > | |
| using | DSC::NonStaticEventHandler = void(C::*)(void *sender, void *args) |
| Class method type to be executed when event fires. More... | |
| using DSC::NonStaticEventHandler = typedef void (C::*)(void* sender, void* args) |
Class method type to be executed when event fires.
| sender | instance that triggered the event |
| args | event arguments |
| typedef void(* DSC::StaticEventHandler) (void *sender, void *args) |
Function type to be executed when event fires
| sender | instance that triggered the event |
| args | event arguments |