#include "EST_bool.h"
Go to the source code of this file.
Classes | |
struct | old_tbuffer |
class | EST_TBuffer< T > |
Extending buffer class. More... | |
#define | TBUFFER_N_OLD (10) |
How many chunks of memory to keep around for re-use. More... | |
#define | TBUFFER_DEFAULT_SIZE 0 |
Initial size for buffers created with no size specified. More... | |
#define | TBUFFER_DEFAULT_STEP 100 |
Amount to increment buffer size by. More... | |
struct old_tbuffer | EST_old_buffers [TBUFFER_N_OLD] |
Memory of old buffers. More... | |
Extending buffers, ie arrays which grow as needed. I got fed up of writing equivalent code all over the place.
Definition in file EST_TBuffer.h.
#define TBUFFER_N_OLD (10) |
How many chunks of memory to keep around for re-use.
Definition at line 49 of file EST_TBuffer.h.
#define TBUFFER_DEFAULT_SIZE 0 |
Initial size for buffers created with no size specified.
Definition at line 52 of file EST_TBuffer.h.
#define TBUFFER_DEFAULT_STEP 100 |
Amount to increment buffer size by.
Definition at line 55 of file EST_TBuffer.h.
struct old_tbuffer EST_old_buffers[TBUFFER_N_OLD] |
Memory of old buffers.
Definition at line 42 of file tbuffer_t.cc.