#include <src/main/decaf/internal/io/StandardOutputStream.h>

Public Member Functions | ||||
| StandardOutputStream () | ||||
| virtual | ~StandardOutputStream () | |||
| virtual void | flush () | |||
Flushes this stream by writing any buffered output to the underlying stream.
| ||||
| virtual void | close () | |||
Closes this object and deallocates the appropriate resources.The object is generally no longer usable after calling close.
| ||||
Protected Member Functions | ||||
| virtual void | doWriteByte (unsigned char value) | |||
| virtual void | doWriteArrayBounded (const unsigned char *buffer, int size, int offset, int length) | |||
| decaf::internal::io::StandardOutputStream::StandardOutputStream | ( | ) |
| virtual decaf::internal::io::StandardOutputStream::~StandardOutputStream | ( | ) | [virtual] |
| virtual void decaf::internal::io::StandardOutputStream::close | ( | ) | [virtual] |
Closes this object and deallocates the appropriate resources.The object is generally no longer usable after calling close.
| IOException | if an error occurs while closing. |
The default implementation of this method does nothing.
Reimplemented from decaf::io::OutputStream.
| virtual void decaf::internal::io::StandardOutputStream::doWriteArrayBounded | ( | const unsigned char * | buffer, | |
| int | size, | |||
| int | offset, | |||
| int | length | |||
| ) | [protected, virtual] |
Reimplemented from decaf::io::OutputStream.
| virtual void decaf::internal::io::StandardOutputStream::doWriteByte | ( | unsigned char | value | ) | [protected, virtual] |
Implements decaf::io::OutputStream.
| virtual void decaf::internal::io::StandardOutputStream::flush | ( | ) | [virtual] |
Flushes this stream by writing any buffered output to the underlying stream.
| IOException | if an I/O error occurs. |
The default implementation of this method does nothing.
Reimplemented from decaf::io::OutputStream.
1.6.1