#include <io_decorators.h>
Inheritance diagram for dami::io::CompressedWriter:
Public Member Functions | |
CompressedWriter (ID3_Writer &writer) | |
virtual | ~CompressedWriter () |
size_type | getOrigSize () const |
void | flush () |
Flush the writer. | |
size_type | writeChars (const char_type buf[], size_type len) |
Write up to len characters into buf and advance the internal position accordingly. | |
size_type | writeChars (const char buf[], size_type len) |
pos_type | getCur () |
Return the next position that will be written to. | |
void | close () |
Close the writer. |
|
Definition at line 196 of file io_decorators.h. |
|
Definition at line 199 of file io_decorators.h. |
|
Close the writer. Any further actions on the writer should fail. * Implements ID3_Writer. Definition at line 212 of file io_decorators.h. |
|
Flush the writer. * Implements ID3_Writer. Definition at line 257 of file io_decorators.cpp. References ID3_Writer::writeChars(). Referenced by ID3_FrameImpl::Render(). |
|
Return the next position that will be written to.
Implements ID3_Writer. Definition at line 211 of file io_decorators.h. |
|
Definition at line 201 of file io_decorators.h. Referenced by ID3_FrameImpl::Render(). |
|
Reimplemented from ID3_Writer. Definition at line 206 of file io_decorators.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 292 of file io_decorators.cpp. |