diff -r a0cc38a72871 -r 81dacba7a63a PeekableStream.st --- a/PeekableStream.st Thu Jun 02 13:36:22 1994 +0200 +++ b/PeekableStream.st Thu Jun 02 18:22:49 1994 +0200 @@ -18,15 +18,39 @@ ! PeekableStream comment:' +COPYRIGHT (c) 1994 by Claus Gittinger + All Rights Reserved +'! -COPYRIGHT (c) 1994 by Claus Gittinger +!PeekableStream class methodsFor:'documentation'! + +copyright +" + COPYRIGHT (c) 1994 by Claus Gittinger All Rights Reserved -$Header: /cvs/stx/stx/libbasic/PeekableStream.st,v 1.3 1994-05-17 10:08:31 claus Exp $ + This software is furnished under a license and may be used + only in accordance with the terms of that license and with the + inclusion of the above copyright notice. This software may not + be provided or otherwise made available to, or used by, any + other person. No title to or ownership of the software is + hereby transferred. +" +! -abstract superclass for all Stream which support read-ahead -(i.e. peeking) of one element. -'! +version +" +$Header: /cvs/stx/stx/libbasic/PeekableStream.st,v 1.4 1994-06-02 16:21:13 claus Exp $ +" +! + +documentation +" + abstract superclass for all Stream which support read-ahead + (i.e. peeking) of one element. + Concrete subclasses must implement a peek method. +" +! ! !PeekableStream methodsFor:'reading'!