| Urho3D
    | 
Allocator template class. Allocates objects of a specific class. More...
#include </home/runner/work/Dviglo/Dviglo/DvigloRepository/Source/Urho3D/Container/Allocator.h>
| Public Member Functions | |
| Allocator (unsigned 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 | |
| AllocatorBlock * | allocator_ | 
| Allocator block. | |
Allocator template class. Allocates objects of a specific class.
 1.8.17
 1.8.17