Create a stream buffer that writes into a client-supplied buffer.
Declared in <bdlsb_fixedmemoutstreambuf.h>
FixedMemOutStreamBuf(
char* buffer,
std::streamsize length);
Create an empty stream buffer that uses the specified character buffer of the specified length. The behavior is undefined unless length == 0 or length > 0 && buffer != 0. Note that buffer is held but not owned.
| Name | Description |
|---|---|
| buffer | character buffer to use for output; held but not owned |
| length | size of buffer in characters |