Inheritance diagram for IT_Bus::StringOutputStream:
Definition at line 14 of file string_output_stream.h.
Public Member Functions | |
virtual void | write (const Character to_write) throw ((IOException)) |
Write the character. | |
virtual void | write (const Character *to_write) throw ((IOException)) |
Write the character. | |
virtual void | write (const Character *to_write, size_t length) throw ((IOException)) |
Write the character. | |
Private Attributes | |
String | m_string |
virtual void IT_Bus::StringOutputStream::write | ( | const Character | to_write | ) | throw ((IOException)) [virtual] |
Write the character.
Character | to write to this stream. |
Implements IT_Bus::OutputStream.
virtual void IT_Bus::StringOutputStream::write | ( | const Character * | to_write | ) | throw ((IOException)) [virtual] |
virtual void IT_Bus::StringOutputStream::write | ( | const Character * | to_write, | |
size_t | length | |||
) | throw ((IOException)) [virtual] |
Write the character.
A | pointer to the Character. | |
Number | of characters to write. |
Implements IT_Bus::OutputStream.