NonPositionableExternalStream.st
changeset 20806 729f94d21909
parent 20685 4cf48622d541
child 21024 8734987eb5c7
child 21028 986bb2a74ac2
equal deleted inserted replaced
20805:5e4783d33953 20806:729f94d21909
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "
     1 "
     4  COPYRIGHT (c) 1989 by Claus Gittinger
     2  COPYRIGHT (c) 1989 by Claus Gittinger
     5 	      All Rights Reserved
     3 	      All Rights Reserved
     6 
     4 
     7  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
    66     external streams. Concrete subclasses are terminal streams, pipe streams,
    64     external streams. Concrete subclasses are terminal streams, pipe streams,
    67     PrinterStreams, Sockets etc.
    65     PrinterStreams, Sockets etc.
    68 
    66 
    69     There are three special instances of this class, representing stdin,
    67     There are three special instances of this class, representing stdin,
    70     stdout and stderr of the smalltalk/X process (see Unix manuals, if you
    68     stdout and stderr of the smalltalk/X process (see Unix manuals, if you
    71     dont know what those are used for). These special streams are bound to
    69     don't know what those are used for). These special streams are bound to
    72     to globals Stdin, Stdout and Stderr at early initialization time
    70     to globals Stdin, Stdout and Stderr at early initialization time
    73     (see Smalltalk>>initializeStandardStreams).
    71     (see Smalltalk>>initializeStandardStreams).
    74 
    72 
    75     The name of this class is a historical leftover - it should be called
    73     The name of this class is a historical leftover - it should be called
    76     'TTYStream' or similar.
    74     'TTYStream' or similar.
    77 
    75 
    78     [author:]
    76     [author:]
    79 	Claus Gittinger
    77         Claus Gittinger
    80 "
    78 "
    81 ! !
    79 ! !
    82 
    80 
    83 !NonPositionableExternalStream class methodsFor:'instance creation'!
    81 !NonPositionableExternalStream class methodsFor:'instance creation'!
    84 
    82