#include <AutoEnlargeBuffer.h>
Definition at line 7 of file AutoEnlargeBuffer.h.
◆ AutoEnlargeBuffer()
AutoEnlargeBuffer::AutoEnlargeBuffer |
( |
int | size = 128*1024 | ) |
|
|
inline |
◆ ~AutoEnlargeBuffer()
AutoEnlargeBuffer::~AutoEnlargeBuffer |
( |
| ) |
|
|
inline |
◆ copy()
void AutoEnlargeBuffer::copy |
( |
void * | src, |
|
|
int | size ) |
|
inline |
Definition at line 40 of file AutoEnlargeBuffer.h.
41{
42 if (
size > m_SIZE ) {
43 do {
44 m_SIZE *= 2;
45 }
46 while (
size > m_SIZE );
47
48 free( m_buffer );
49 m_buffer = malloc(m_SIZE);
50 }
51
53 memcpy(m_buffer, src,
size);
54}
◆ data()
void * AutoEnlargeBuffer::data |
( |
| ) |
|
|
inline |
◆ size()
int AutoEnlargeBuffer::size |
( |
| ) |
|
|
inline |
The documentation for this class was generated from the following file: