34#ifndef ANA_OBSERVER_OBSERVCREAT_H
35#define ANA_OBSERVER_OBSERVCREAT_H
56 static std::list<Notifier> & _notifiers();
This is a manager for callbacks called when an new Observable is created.
static void registerNotifier(Notifier n)
static const std::list< Notifier > & notifiers()
static void notifyCreated(Observable *o)
calls the notifiers
void(* Notifier)(Observable *)
static void unregisterNotifier(Notifier n)
This class can be subclassed to represent an object that the programmer wants to have observed.