Design Pattern Examples
Overview of object-oriented design patterns
DesignPatternExamples_python.observer.observersubject_numberproducer Namespace Reference

Classes

class  IEventNotifications
 Represents a Subject that takes observers implementing the IObserverNumberChanged interface. More...
 
class  INumberProducer
 Represents the Subject to the observers. More...
 
class  IObserverNumberChanged
 Represents an observer to the Subject class. More...
 
class  ObserverSubject_NumberProducer
 Represents the Subject to be observed; in this case, a class that contains a single number that is updated with a call to the Update() method. More...