Interface to an observer of a collection Pin objects. More...
#include <IPinObserver.h>
Public Member Functions | |
virtual void | OnPinAdded (Pin &pin)=0 |
virtual void | OnPinRemoved (Pin &pin)=0 |
Interface to an observer of a collection Pin objects.
This interface specifies how an object can recieve notifications when the contents of a Pin collection is modified. This interface is a companion to IPinObservable.
|
pure virtual |
Notification that a Pin has been added to a collection.
pin | The pin that has been added to the collection. |
Implemented in Eegeo::Pins::PinController.
|
pure virtual |
Notification that a Pin has been removed from a collection.
pin | The pin that has been removed from the collection. |
Implemented in Eegeo::Pins::PinController.