20 #ifndef COLLECTIONCALLBACK_H_
21 #define COLLECTIONCALLBACK_H_
24 namespace basic_types {
48 virtual void insert(E element) = 0;
CollectionCallback()
Creates a new instance of this object.
Definition: CollectionCallback.h:55
This template provides a possibility to add elements to a collection without having a reference to th...
Definition: CollectionCallback.h:34
virtual void insert(E element)=0
Adds an element to the collection hidden by this callback object.
virtual ~CollectionCallback()
Destroys the current instance of this object.
Definition: CollectionCallback.h:41