API Documentation
Deallocator.h
1 // Deallocator.h
3 //
5 
6 namespace nkMemory
7 {
11  template <typename T>
13  {
14  public :
15 
19  virtual ~Deallocator () = default ;
20 
26  virtual void deallocate (T* object) = 0 ;
27  } ;
28 }
nkMemory::Deallocator::~Deallocator
virtual ~Deallocator()=default
nkMemory::Deallocator::deallocate
virtual void deallocate(T *object)=0
nkMemory::Deallocator
Interface used for deallocating memory.
Definition: Deallocator.h:13
nkMemory
Encompasses all API of component NilkinsMemory.
Definition: Allocator.h:7