#include <InStreams.h>
Inheritance diagram for InBinary:


Protected Member Functions | |
| virtual bool | isEof (const PhysicalInStream &stream) const |
| The function returns whether the end of stream has been reached. | |
| virtual void | readChar (char &d, PhysicalInStream &stream) |
| The function reads a char from the stream. | |
| virtual void | readUChar (unsigned char &d, PhysicalInStream &stream) |
| The function reads an unsigned char from the stream. | |
| virtual void | readShort (short &d, PhysicalInStream &stream) |
| The function reads a short int from the stream. | |
| virtual void | readUShort (unsigned short &d, PhysicalInStream &stream) |
| The function reads an unsigned short int from the stream. | |
| virtual void | readInt (int &d, PhysicalInStream &stream) |
| The function reads an int from the stream. | |
| virtual void | readUInt (unsigned int &d, PhysicalInStream &stream) |
| The function reads an unsigned int from the stream. | |
| virtual void | readLong (long &d, PhysicalInStream &stream) |
| The function reads a long int from the stream. | |
| virtual void | readULong (unsigned long &d, PhysicalInStream &stream) |
| The function reads an unsigned long int from the stream. | |
| virtual void | readFloat (float &d, PhysicalInStream &stream) |
| The function reads a float from the stream. | |
| virtual void | readDouble (double &d, PhysicalInStream &stream) |
| The function reads a double from the stream. | |
| virtual void | readString (char *d, PhysicalInStream &stream) |
| The function reads a string from the stream. | |
| virtual void | readEndl (PhysicalInStream &stream) |
| The function is intended to read an endl-symbol from the stream. | |
| virtual void | readData (void *p, int size, PhysicalInStream &stream) |
| The function reads a number of bytes from a stream. | |
| virtual void | skipData (int size, PhysicalInStream &stream) |
| The function skips a number of bytes in the file. | |
The physical reading is done by PhysicalInStream derivates.
Definition at line 511 of file InStreams.h.
|
|
The function returns whether the end of stream has been reached.
Implements StreamReader. Definition at line 518 of file InStreams.h. References PhysicalInStream::getEof(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads a char from the stream.
Implements StreamReader. Definition at line 525 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads an unsigned char from the stream.
Implements StreamReader. Definition at line 533 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads a short int from the stream.
Implements StreamReader. Definition at line 541 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads an unsigned short int from the stream.
Implements StreamReader. Definition at line 549 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads an int from the stream.
Implements StreamReader. Definition at line 557 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads an unsigned int from the stream.
Implements StreamReader. Definition at line 565 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads a long int from the stream.
Implements StreamReader. Definition at line 573 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads an unsigned long int from the stream.
Implements StreamReader. Definition at line 581 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads a float from the stream.
Implements StreamReader. Definition at line 589 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads a double from the stream.
Implements StreamReader. Definition at line 597 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function reads a string from the stream.
Implements StreamReader. Definition at line 607 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
|
The function is intended to read an endl-symbol from the stream. In fact, the function does nothing.
Implements StreamReader. Definition at line 615 of file InStreams.h. |
|
||||||||||||||||
|
The function reads a number of bytes from a stream.
Implements StreamReader. Definition at line 625 of file InStreams.h. References PhysicalInStream::readFromStream(). |
Here is the call graph for this function:

|
||||||||||||
|
The function skips a number of bytes in the file.
Reimplemented from StreamReader. Definition at line 633 of file InStreams.h. References PhysicalInStream::skipInStream(). |
Here is the call graph for this function:

1.3.6