Rebel Fork Framework
Urho3D::Allocator< T > Class Template Reference

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

#include <Urho3D/Container/Allocator.h>

Inheritance diagram for Urho3D::Allocator< T >:
Urho3D::NonCopyable

Public Member Functions

 Allocator (unsigned initialCapacity=0)
 Construct.
 
 ~Allocator ()
 Destruct.
 
template<typename... Args>
T * Reserve (Args &&... args)
 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.
 

Additional Inherited Members

- Private Member Functions inherited from Urho3D::NonCopyable
 NonCopyable (const NonCopyable &other)=delete
 
 NonCopyable (NonCopyable &&other)=delete
 
NonCopyableoperator= (const NonCopyable &other)=delete
 
NonCopyableoperator= (NonCopyable &&other)=delete
 

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: