#include <io_decorators.h>
Inheritance diagram for dami::io::UnsyncedWriter:
Public Member Functions | |
UnsyncedWriter (ID3_Writer &writer) | |
size_type | getNumSyncs () const |
int_type | writeChar (char_type ch) |
void | flush () |
Flush the writer. | |
size_type | writeChars (const char_type[], size_type len) |
Write len characters into the array buf . | |
size_type | writeChars (const char buf[], size_type len) |
void | close () |
Close the writer. | |
pos_type | getBeg () |
Return the beginning position in the writer. | |
pos_type | getCur () |
Return the next position that will be written to. | |
pos_type | getEnd () |
Return the first position that can't be written to. |
Definition at line 152 of file io_decorators.h.
|
Definition at line 161 of file io_decorators.h. |
|
Close the writer. Any further actions on the writer should fail. Implements ID3_Writer. Definition at line 180 of file io_decorators.h. |
|
Flush the writer.
Implements ID3_Writer. Definition at line 229 of file io_decorators.cpp. References ID3_Writer::flush(), and ID3_Writer::writeChar(). |
|
Return the beginning position in the writer.
Reimplemented from ID3_Writer. Definition at line 182 of file io_decorators.h. |
|
Return the next position that will be written to.
Implements ID3_Writer. Definition at line 183 of file io_decorators.h. Referenced by writeChars(). |
|
Return the first position that can't be written to. A return value of -1 indicates no (reasonable) limit to the writer. Reimplemented from ID3_Writer. Definition at line 184 of file io_decorators.h. |
|
Definition at line 165 of file io_decorators.h. |
|
Definition at line 218 of file io_decorators.cpp. References ID3_Writer::writeChar(). |
|
Definition at line 175 of file io_decorators.h. |
|
Write Since the stream needs might have been unsynced, this function copies the characters one at a time. Definition at line 240 of file io_decorators.cpp. References getCur(). |