2010-04-05 23:38:59 +02:00
|
|
|
#ifndef EVENTSBASEGLOBAL_H
|
|
|
|
#define EVENTSBASEGLOBAL_H
|
|
|
|
|
2010-07-29 00:02:12 +08:00
|
|
|
#include "EventBase.h"
|
2010-04-05 23:38:59 +02:00
|
|
|
|
|
|
|
namespace Engine {
|
|
|
|
|
|
|
|
/** \brief Registers a listener to a given event type */
|
2010-07-29 00:02:12 +08:00
|
|
|
bool RegisterListener (Module *listener_module, const int event_type);
|
2010-04-05 23:38:59 +02:00
|
|
|
/** \brief Calls all event listeners to handle the events */
|
|
|
|
bool QueueEvent (const EventBasePtr &event);
|
|
|
|
/** \brief Calls the listener handlers immediately */
|
|
|
|
bool TriggerEvent (const EventBasePtr &event);
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif /* EVENTSBASEGLOBAL_H */
|