UnboundedExternalStream.st
changeset 1295 83f594f05c52
parent 614 acfce2315f75
child 17711 39faaaf888b4
child 18250 e785acf5ae8b
--- a/UnboundedExternalStream.st	Thu Apr 25 18:54:31 1996 +0200
+++ b/UnboundedExternalStream.st	Thu Apr 25 19:02:53 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ExternalStream subclass:#UnboundedExternalStream
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Streams-External'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Streams-External'
 !
 
 !UnboundedExternalStream class methodsFor:'documentation'!
@@ -38,11 +38,10 @@
     This class provides common protocol for all external streams which are
     unbound in size (i.e. have no end). Examples of these are PipeStream,
     Sockets, TTYStreams etc.
+
+    [author:]
+        Claus Gittinger
 "
-!
-
-version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnboundedExternalStream.st,v 1.7 1995-11-23 01:52:35 cg Exp $'
 ! !
 
 !UnboundedExternalStream methodsFor:'redefind basic'!
@@ -65,3 +64,8 @@
     self shouldNotImplement
 ! !
 
+!UnboundedExternalStream class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/UnboundedExternalStream.st,v 1.8 1996-04-25 17:02:20 cg Exp $'
+! !