#include <cel_observable.h>
Public Member Functions | |
virtual | ~Observer () |
virtual void | update (Observable *inObservable)=0 |
This class observes the Observable derivative instances and if the Observable::notify is called, Observer::update is invoked.
|
inlinevirtual |
It provides virtual destructor to be an abstract class.
|
pure virtual |
This method is usually invoked by Observable::notify method.
inObservable | An Observable instance that invokes this method. You can use this parameter to gather information about the current status. |
Implemented in Celartem::ObserverImpl.