Use this to implement a Observer using the Observer Pattern template. More...
#include <observer.h>
Public Member Functions | |
| ObserverBase (T *subject) | |
| virtual void | Start () |
| virtual void | Stop () |
| virtual std::string | debugInfo () |
| T * | subject () const |
Protected Attributes | |
| T * | subject_ |
Use this to implement a Observer using the Observer Pattern template.
Definition at line 14 of file observer.h.
1.8.11