You.i Engine
YiTaskEventHandler.h
Go to the documentation of this file.
1 // © You i Labs Inc. 2000-2017. All rights reserved.
2 #ifndef _YI_TASK_EVENT_HANDLER_H_
3 #define _YI_TASK_EVENT_HANDLER_H_
4 
5 #include "event/YiEventHandler.h"
6 
16 {
17 public:
18 
22  virtual bool HandleEvent(const std::shared_ptr<CYIEventDispatcher> &pDispatcher, CYIEvent *pEvent) override;
23 };
24 
29 #endif // _YI_TASK_EVENT_HANDLER_H_
Allows registering of event filters which can be used to perform processing on an event before and af...
Definition: YiEventHandler.h:25
virtual bool HandleEvent(const std::shared_ptr< CYIEventDispatcher > &pDispatcher, CYIEvent *pEvent) override
Base class for events.
Definition: YiEvent.h:489
Handles events where tasks are executed when the event is processed on an event queue.
Definition: YiTaskEventHandler.h:15