Lunchbox
1.6.0
|
An object allocation pool. More...
#include <pool.h>
Public Member Functions | |
Pool () | |
Construct a new pool. | |
virtual | ~Pool () |
Destruct this pool. | |
T * | alloc () |
void | release (T *item) |
Release an item for reuse. | |
void | flush () |
Delete all cached items. |
An object allocation pool.
lunchbox::Pool< T, locked >::Pool | ( | ) | [inline] |
virtual lunchbox::Pool< T, locked >::~Pool | ( | ) | [inline, virtual] |
Destruct this pool.
Definition at line 36 of file pool.h.
References lunchbox::Pool< T, locked >::flush().
T* lunchbox::Pool< T, locked >::alloc | ( | ) | [inline] |
void lunchbox::Pool< T, locked >::flush | ( | ) | [inline] |
Delete all cached items.
Definition at line 60 of file pool.h.
Referenced by lunchbox::Pool< T, locked >::~Pool().
void lunchbox::Pool< T, locked >::release | ( | T * | item | ) | [inline] |