NonPositionableExternalStream.st
changeset 1295 83f594f05c52
parent 1133 961f2b095c22
child 1344 32a51164b237
equal deleted inserted replaced
1294:e26bbb61f6b2 1295:83f594f05c52
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 UnboundedExternalStream subclass:#NonPositionableExternalStream
    13 UnboundedExternalStream subclass:#NonPositionableExternalStream
    14 	 instanceVariableNames:''
    14 	instanceVariableNames:''
    15 	 classVariableNames:'StdInStream StdOutStream StdErrorStream'
    15 	classVariableNames:'StdInStream StdOutStream StdErrorStream'
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'Streams-External'
    17 	category:'Streams-External'
    18 !
    18 !
    19 
    19 
    20 !NonPositionableExternalStream primitiveDefinitions!
    20 !NonPositionableExternalStream primitiveDefinitions!
    21 %{
    21 %{
    22 #include <stdio.h>
    22 #include <stdio.h>
    53     to globals Stdin, Stdout and Stderr at early initialization time
    53     to globals Stdin, Stdout and Stderr at early initialization time
    54     (see Smalltalk>>initializeStandardStreams).
    54     (see Smalltalk>>initializeStandardStreams).
    55 
    55 
    56     The name of this class is a historical leftover - it should be called
    56     The name of this class is a historical leftover - it should be called
    57     'TTYStream' or similar.
    57     'TTYStream' or similar.
    58 "
    58 
    59 !
    59     [author:]
    60 
    60         Claus Gittinger
    61 version
    61 "
    62     ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.26 1996-04-02 22:02:45 cg Exp $'
       
    63 ! !
    62 ! !
    64 
    63 
    65 !NonPositionableExternalStream class methodsFor:'instance creation'!
    64 !NonPositionableExternalStream class methodsFor:'instance creation'!
    66 
    65 
    67 forStderr
    66 forStderr
   218     "return true, if the stream supports positioning (this one is not)"
   217     "return true, if the stream supports positioning (this one is not)"
   219 
   218 
   220     ^ false
   219     ^ false
   221 ! !
   220 ! !
   222 
   221 
       
   222 !NonPositionableExternalStream class methodsFor:'documentation'!
       
   223 
       
   224 version
       
   225     ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.27 1996-04-25 17:02:24 cg Exp $'
       
   226 ! !