#include <OutStreams.h>
Inheritance diagram for StreamWriter:
Protected Member Functions | |
virtual void | writeChar (char d, PhysicalOutStream &stream)=0 |
Writes a character to a stream. | |
virtual void | writeUChar (unsigned char d, PhysicalOutStream &stream)=0 |
Writes a unsigned character to a stream. | |
virtual void | writeShort (short d, PhysicalOutStream &stream)=0 |
Writes a short to a stream. | |
virtual void | writeUShort (unsigned short d, PhysicalOutStream &stream)=0 |
Writes a unsigned short to a stream. | |
virtual void | writeInt (int d, PhysicalOutStream &stream)=0 |
Writes a int to a stream. | |
virtual void | writeUInt (unsigned int d, PhysicalOutStream &stream)=0 |
Writes a unsigned int to a stream. | |
virtual void | writeLong (long d, PhysicalOutStream &stream)=0 |
Writes a long to a stream. | |
virtual void | writeULong (unsigned long d, PhysicalOutStream &stream)=0 |
Writes a unsigned long to a stream. | |
virtual void | writeFloat (float d, PhysicalOutStream &stream)=0 |
Writes a float to a stream. | |
virtual void | writeDouble (double d, PhysicalOutStream &stream)=0 |
Writes a double to a stream. | |
virtual void | writeString (const char *d, PhysicalOutStream &stream)=0 |
Writes a string to a stream. | |
virtual void | writeEndL (PhysicalOutStream &stream)=0 |
Writes a 'end of line' to a stream. | |
virtual void | writeData (const void *p, int size, PhysicalOutStream &stream)=0 |
The function writes a number of bytes into the stream. |
The physical writing is then done by OutStream derivates.
Definition at line 41 of file OutStreams.h.
|
Writes a character to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a unsigned character to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a short to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a unsigned short to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a int to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a unsigned int to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a long to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a unsigned long to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a float to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a double to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a string to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
Writes a 'end of line' to a stream.
Implemented in OutBinary, OutText, and OutTextRaw. |
|
The function writes a number of bytes into the stream.
Implemented in OutBinary, OutText, and OutTextRaw. |