#include <OutStreams.h>
Inheritance diagram for OutText:
Protected Member Functions | |
virtual void | writeChar (char d, PhysicalOutStream &stream) |
Writes a character to a stream. | |
virtual void | writeUChar (unsigned char d, PhysicalOutStream &stream) |
Writes a unsigned character to a stream. | |
virtual void | writeShort (short d, PhysicalOutStream &stream) |
Writes a short to a stream. | |
virtual void | writeUShort (unsigned short d, PhysicalOutStream &stream) |
Writes a unsigned short to a stream. | |
virtual void | writeInt (int d, PhysicalOutStream &stream) |
Writes a int to a stream. | |
virtual void | writeUInt (unsigned int d, PhysicalOutStream &stream) |
Writes a unsigned int to a stream. | |
virtual void | writeLong (long d, PhysicalOutStream &stream) |
Writes a long to a stream. | |
virtual void | writeULong (unsigned long d, PhysicalOutStream &stream) |
Writes a unsigned long to a stream. | |
virtual void | writeFloat (float d, PhysicalOutStream &stream) |
Writes a float to a stream. | |
virtual void | writeDouble (double d, PhysicalOutStream &stream) |
Writes a double to a stream. | |
virtual void | writeString (const char *d, PhysicalOutStream &stream) |
Writes a string to a stream. | |
virtual void | writeEndL (PhysicalOutStream &stream) |
Writes a 'end of line' to a stream. | |
virtual void | writeData (const void *p, int size, PhysicalOutStream &stream) |
The function writes a number of bytes into the stream. | |
Private Attributes | |
char | buf [50] |
A buffer for formatting the numeric data to a text format. |
The physical writing is then done by PhysicalOutStream derivates.
Definition at line 353 of file OutStreams.h.
|
Writes a character to a stream.
Implements StreamWriter. Definition at line 364 of file OutStreams.h. References PhysicalOutStream::writeToStream(). Referenced by writeData(). |
Here is the call graph for this function:
|
Writes a unsigned character to a stream.
Implements StreamWriter. Definition at line 372 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a short to a stream.
Implements StreamWriter. Definition at line 380 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a unsigned short to a stream.
Implements StreamWriter. Definition at line 388 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a int to a stream.
Implements StreamWriter. Definition at line 396 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a unsigned int to a stream.
Implements StreamWriter. Definition at line 404 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a long to a stream.
Implements StreamWriter. Definition at line 412 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a unsigned long to a stream.
Implements StreamWriter. Definition at line 420 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a float to a stream.
Implements StreamWriter. Definition at line 428 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a double to a stream.
Implements StreamWriter. Definition at line 436 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a string to a stream.
Implements StreamWriter. Definition at line 12 of file OutStreams.cpp. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
Writes a 'end of line' to a stream.
Implements StreamWriter. Definition at line 450 of file OutStreams.h. References PhysicalOutStream::writeToStream(). |
Here is the call graph for this function:
|
The function writes a number of bytes into the stream.
Implements StreamWriter. Definition at line 35 of file OutStreams.cpp. References writeChar(). |
Here is the call graph for this function:
|
A buffer for formatting the numeric data to a text format.
Definition at line 357 of file OutStreams.h. |