Type of stream to create.
Source position: iostream.pp line 28
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. |
); |
TIOSType is passed to the Create constructor of TIOStream, it determines what kind of stream is created.
|
Stream which handles standard input/output and stderr. |