TDME2 1.9.121
|
#include <tdme/utilities/Pool.h>
Public Member Functions | |
Pool () | |
Public constructor. More... | |
virtual | ~Pool () |
T | allocate () |
Allocate a new element from pool. More... | |
void | release (T element) |
Release element in pool for being reused. More... | |
int32_t | capacity () |
int32_t | size () |
void | reset () |
Reset this pool. More... | |
Protected Member Functions | |
virtual T | instantiate ()=0 |
Instantiate element. More... | |
Private Attributes | |
vector< T > | freeElements |
vector< T > | usedElements |
Pool template class.
<E> |
|
inline |
|
protectedpure virtual |
Instantiate element.
Implemented in Engine::EngineThreadQueueElementPool, EntityRenderer_TransparentRenderFacesGroupPool, and TransparentRenderFacesPool_TransparentRenderFacesPool.
|
inline |