ORIGINAL
Loading...
Searching...
No Matches
original::deleter< TYPE > Class Template Referencefinal

Default deletion policy for single objects. More...

#include <deleter.h>

Inheritance diagram for original::deleter< TYPE >:
Inheritance graph
Collaboration diagram for original::deleter< TYPE >:
Collaboration graph

Public Member Functions

void operator() (const TYPE *ptr) const noexcept override
 Deletes a single object.
 
- Public Member Functions inherited from original::deleterBase< TYPE >
constexpr deleterBase () noexcept=default
 Default constructor.
 
virtual ~deleterBase ()=0
 Pure virtual destructor.
 

Detailed Description

template<typename TYPE>
class original::deleter< TYPE >

Default deletion policy for single objects.

Specialization for array deletion.

Template Parameters
TYPEType of resource to manage

Invokes standard delete operator on the managed pointer. Suitable for use with non-array types allocated with new.

Template Parameters
TYPE[]Element type of array

Invokes array delete[] operator for proper array cleanup. Must be used with array types allocated with new[].

Member Function Documentation

◆ operator()()

template<typename TYPE>
void original::deleter< TYPE >::operator() ( const TYPE * ptr) const
overridevirtualnoexcept

Deletes a single object.

Parameters
ptrPointer to the object to delete
Note
Uses standard delete operator. Do not use with array types.

Implements original::deleterBase< TYPE >.


The documentation for this class was generated from the following file: