[Overview][Types][Classes] |
Type of stream to create
Source position: iostream.pp line 22
type TIOSType = ( |
||
iosInput, |
|
The stream can be used to read from standard input |
iosOutPut, |
|
The stream can be used to write to standard output |
iosError |
|
The stream can be used to write to standard diagnostic output |
); |
TIOSTypeis passed to the Createconstructor of TIOStream, it determines what kind of stream is created.
|
Stream which handles standard input/output and stderr. |