Easy C++ Events

Anonymous

An easy to use, lightweight event framework for C++ that uses templates to ensure type-safety.

This project was influenced heavily by cehtl ( https://sourceforge.net/projects/cehtl/ ) but implements a different design pattern. This framework allows the implementation of the Observer pattern, in which a subject class can fire events and observer classes are notified to handle them. In this framework, an observer can listen for an event from a specific object rather than receiving all events of a specific type.