#include <io_strings.h>
Inheritance diagram for dami::io::StringWriter:
Public Member Functions | |
StringWriter (String &string) | |
virtual | ~StringWriter () |
void | close () |
Close the writer. | |
void | flush () |
Flush the writer. | |
virtual size_type | writeChars (const char buf[], size_type len) |
size_type | writeChars (const char_type buf[], size_type len) |
Write up to len characters into buf and advance the internal position accordingly. | |
pos_type | getCur () |
Return the next position that will be written to. |
|
Definition at line 187 of file io_strings.h. |
|
Definition at line 188 of file io_strings.h. |
|
Close the writer. Any further actions on the writer should fail. * Implements ID3_Writer. Definition at line 190 of file io_strings.h. |
|
Flush the writer. * Implements ID3_Writer. Definition at line 191 of file io_strings.h. |
|
Return the next position that will be written to.
Implements ID3_Writer. Definition at line 203 of file io_strings.h. |
|
Write up to Returns the number of characters write into buf. Note that the value returned may be less than the number of bytes that the internal position advances, due to multi-byte characters. Implements ID3_Writer. Definition at line 197 of file io_strings.h. |
|
Reimplemented from ID3_Writer. Definition at line 192 of file io_strings.h. |