Provide a protocol (or pure interface) for a thread-safe object deleter.
Declared in <bdlma_deleter.h>
template<class TYPE>
class Deleter;
| Name | Description |
|---|---|
~Deleter [destructor] [virtual] | Destroy this object deleter. |
deleteObject [virtual] | Destroy the specified instance based on its static type and return its memory footprint to the appropriate memory manager. Note that a particular implementation is allowed to destroy this deleter itself. |
| Name | Description |
|---|---|
DefaultDeleter | This class provides a default concrete implementation of the Deleter protocol. Instances of DefaultDeleter<TYPE> either use an allocator optionally supplied at construction, or the currently installed default allocator if an allocator is not provided. |
Factory | This class provides a protocol (or pure interface) for a thread-safe object creator and deleter. It extends the Deleter protocol with the addition of a createObject method. |