#include <it_bus/output_stream.h>
Inheritance diagram for IT_Bus::OutputStream:

Definition at line 16 of file output_stream.h.
Public Member Functions | |
| virtual void | write (const Character to_write)=0 throw ((IOException)) |
| Write the character. | |
| virtual void | write (const Character *to_write)=0 throw ((IOException)) |
| Write the character. | |
| virtual void | write (const Character *to_write, size_t length)=0 throw ((IOException)) |
| Write the character. | |
Protected Member Functions | |
| OutputStream () | |
| virtual void IT_Bus::OutputStream::write | ( | const Character | to_write | ) | throw ((IOException)) [pure virtual] |
Write the character.
| Character | to write to this stream. |
Implemented in IT_Bus::FileOutputStream, IT_Bus::StringOutputStream, and IT_Bus::BinaryBufferOutputStream.
| virtual void IT_Bus::OutputStream::write | ( | const Character * | to_write | ) | throw ((IOException)) [pure virtual] |
Write the character.
| A | pointer to the Character. |
Implemented in IT_Bus::FileOutputStream, IT_Bus::StringOutputStream, and IT_Bus::BinaryBufferOutputStream.
| virtual void IT_Bus::OutputStream::write | ( | const Character * | to_write, | |
| size_t | length | |||
| ) | throw ((IOException)) [pure virtual] |
Write the character.
| A | pointer to the Character. | |
| Number | of characters to write. |
Implemented in IT_Bus::FileOutputStream, IT_Bus::StringOutputStream, and IT_Bus::BinaryBufferOutputStream.
1.5.1-p1