Observable Class Reference
[Design patterns]
#include <ql/patterns/observable.hpp>
Inheritance diagram for Observable:

Detailed Description
Object that notifies its changes to a set of observables.
Public Member Functions | |
Observable (const Observable &) | |
Observable & | operator= (const Observable &) |
void | notifyObservers () |
Friends | |
class | Observer |
Member Function Documentation
Observable & operator= | ( | const Observable & | o | ) |
- Warning:
- notification is sent before the copy constructor has a chance of actually change the data members. Therefore, observers whose update() method tries to use their observables will not see the updated values. It is suggested that the update() method just raise a flag in order to trigger a later recalculation.
void notifyObservers | ( | ) |
This method should be called at the end of non-const methods or when the programmer desires to notify any changes.