Simple char string buffer class for use internally by the devices. More...
#include <character_buffer.hpp>
Public Member Functions | |
long | append (const char &c) |
long | append (const char *s, unsigned long n) |
const char * | c_str () |
CharStringBuffer () | |
void | clear () |
bool | full () const |
unsigned int | remaining () |
virtual | ~CharStringBuffer () |
Static Public Attributes | |
static const unsigned int | buffer_size = 4095 |
Private Attributes | |
char | contents [buffer_size+1] |
unsigned int | fill_point_marker |
Simple char string buffer class for use internally by the devices.
This accommodates buffers which always reserve at least one extra byte for the end of string character.
Definition at line 91 of file character_buffer.hpp.
|
inline |
Definition at line 103 of file character_buffer.hpp.
|
inlinevirtual |
Definition at line 107 of file character_buffer.hpp.
long ecl::devices::CharStringBuffer::append | ( | const char & | c | ) |
Definition at line 84 of file character_buffer.cpp.
long ecl::devices::CharStringBuffer::append | ( | const char * | s, |
unsigned long | n | ||
) |
Definition at line 95 of file character_buffer.cpp.
const char * ecl::devices::CharStringBuffer::c_str | ( | ) |
Definition at line 113 of file character_buffer.cpp.
void ecl::devices::CharStringBuffer::clear | ( | ) |
Definition at line 109 of file character_buffer.cpp.
bool ecl::devices::CharStringBuffer::full | ( | ) | const |
Definition at line 76 of file character_buffer.cpp.
|
inline |
Definition at line 109 of file character_buffer.hpp.
|
static |
Definition at line 98 of file character_buffer.hpp.
|
private |
Definition at line 121 of file character_buffer.hpp.
|
private |
Definition at line 120 of file character_buffer.hpp.