#include <writers.h>
Inheritance diagram for ID3_OStreamWriter::
Public Methods | |
ID3_OStreamWriter (ostream &writer) | |
virtual | ~ID3_OStreamWriter () |
virtual void | close () |
Close the writer. More... | |
virtual void | flush () |
Flush the writer. More... | |
virtual int_type | writeChar (char_type ch) |
Write a single character and advance the internal position. More... | |
virtual size_type | writeChars (const char buf[], size_type len) |
Write up to len chars into buf and advance the internal position accordingly. More... | |
virtual size_type | writeChars (const char_type buf[], size_type len) |
Write up to len chars into buf and advance the internal position accordingly. More... | |
virtual pos_type | getBeg () |
Return the beginning position in the writer *. More... | |
virtual pos_type | getCur () |
Return the next position that will be written to. More... | |
Protected Methods | |
ostream& | getWriter () const |
|
|
|
|
|
Close the writer. Any further actions on the writer should fail. * Reimplemented from ID3_Writer. Reimplemented in ID3_OFStreamWriter. |
|
Flush the writer. * Reimplemented from ID3_Writer. |
|
Return the beginning position in the writer *.
Reimplemented from ID3_Writer. |
|
Return the next position that will be written to.
Reimplemented from ID3_Writer. |
|
|
|
Write a single character and advance the internal position. Note that the interal position may advance more than one byte for a single character write. Returns END_OF_WRITER if there isn't a character to write.
Reimplemented from ID3_Writer. |
|
Write up to Returns the number of characters write into buf.
Reimplemented from ID3_Writer. |
|
Write up to Returns the number of characters write into buf.
Reimplemented from ID3_Writer. |