|
Event-Driven Programming in C++ 1.0
A case study on event-driven programming in C++
|
Declaration of the IObserver interface for the Observer pattern. More...
#include <string>Go to the source code of this file.
Classes | |
| class | observer::IObserver |
| Interface for observer objects. More... | |
Namespaces | |
| namespace | observer |
| Implements the Observer design pattern for event notifications. | |
Declaration of the IObserver interface for the Observer pattern.
This file declares the IObserver interface which defines the contract that all observers must implement in order to receive event notifications from a Subject.