28 CharBuffer(int32_t initialSize);
32 CharBuffer(
const CharBuffer& buffer);
35 CharBuffer& operator = (
const CharBuffer& buffer);
38 CharBuffer& operator = (
const std::string& stringBuffer);
41 bool copy(
const CharBuffer& buffer);
47 int readFromFile(
IFILE filePtr, int32_t length);
49 inline const char* c_str()
const
54 inline int32_t length()
const
61 bool prepareNewLength(int32_t newLen);
66 int32_t myBufferAllocatedLen;
68 static const int32_t DEFAULT_BUFFER_SIZE = 100;