#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) |
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 187 of file io_decorators.h.
dami::io::CompressedWriter::CompressedWriter | ( | ID3_Writer & | writer | ) | [inline, explicit] |
Definition at line 196 of file io_decorators.h.
virtual dami::io::CompressedWriter::~CompressedWriter | ( | ) | [inline, virtual] |
void dami::io::CompressedWriter::close | ( | ) | [inline, virtual] |
Close the writer.
Any further actions on the writer should fail.
Implements ID3_Writer.
Definition at line 212 of file io_decorators.h.
void io::CompressedWriter::flush | ( | ) | [virtual] |
Flush the writer.
Implements ID3_Writer.
Definition at line 257 of file io_decorators.cpp.
References ID3_Writer::writeChars().
Referenced by ID3_FrameImpl::Render(), and ~CompressedWriter().
pos_type dami::io::CompressedWriter::getCur | ( | ) | [inline, virtual] |
Return the next position that will be written to.
Implements ID3_Writer.
Definition at line 211 of file io_decorators.h.
size_type dami::io::CompressedWriter::getOrigSize | ( | ) | const [inline] |
ID3_Writer::size_type io::CompressedWriter::writeChars | ( | const char_type | buf[], | |
size_type | len | |||
) |