Urho3D
Public Member Functions | Private Attributes | List of all members
Urho3D::Allocator< T > Class Template Reference

Allocator template class. Allocates objects of a specific class. More...

#include </home/runner/work/rurho3d.github.io/rurho3d.github.io/urho3d_repo/Source/Urho3D/Container/Allocator.h>

Public Member Functions

 Allocator (i32 initialCapacity=0)
 Construct.
 
 ~Allocator ()
 Destruct.
 
 Allocator (const Allocator< T > &rhs)=delete
 Prevent copy construction.
 
Allocator< T > & operator= (const Allocator< T > &rhs)=delete
 Prevent assignment.
 
T * Reserve ()
 Reserve and default-construct an object.
 
T * Reserve (const T &object)
 Reserve and copy-construct an object.
 
void Free (T *object)
 Destruct and free an object.
 

Private Attributes

AllocatorBlockallocator_
 Allocator block.
 

Detailed Description

template<class T>
class Urho3D::Allocator< T >

Allocator template class. Allocates objects of a specific class.


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