[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Abstract driver class to read stored component data.
|
Returns the type of the next value in the stream. |
|
|
Reads the type of the next value. |
|
|
Starts the reading of the root component. |
|
|
Marks the reading of a new component. |
|
|
Marks the reading of a property value. |
|
|
Read binary data from the stream. |
|
|
Read a float value from the stream. |
|
|
Read a single (real-type) value from the stream. |
|
|
Read a date value from the stream. |
|
|
Read an identifier from the stream. |
|
|
Read an 8-bit integer from the stream. |
|
|
Read a 16-bit integer from the stream. |
|
|
Read a 32-bit integer from the stream. |
|
|
Read a 64-bit integer from the stream. |
|
|
Reads a set from the stream. |
|
|
Read a shortstring from the stream |
|
|
Read a string of type StringType from the stream. |
|
|
Skip till the end of the component. |
|
|
Skip the current value. |
|
|
Abstract driver class to read stored component data. |
|
| | ||
The Free Pascal streaming mechanism, while compatible with Delphi's mechanism, differs from it in the sense that the streaming mechanism uses a driver class when streaming components. The TAbstractObjectReader class is the base driver class for reading property values from streams. It consists entirely of abstract methods, which must be implemented by descendent classes.
Different streaming mechanisms can be implemented by making a descendent from TAbstractObjectReader. The TBinaryObjectReader class is such a descendent class, which streams data in binary (Delphi compatible) format.
All methods described in this class, mustbe implemented by descendent classes.
|
Driver class descendent which reads component data stored in binary format. |