#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 15 Feb 2017 22:12:56 +0100
changeset 4329 a9d435360ebb
parent 4328 90ffb6ec8a72
child 4330 ce8ba4a78326
#DOCUMENTATION by cg class: CollectingSharedQueueStream added: #copyright
CollectingSharedQueueStream.st
--- a/CollectingSharedQueueStream.st	Wed Feb 15 22:07:18 2017 +0100
+++ b/CollectingSharedQueueStream.st	Wed Feb 15 22:12:56 2017 +0100
@@ -1,3 +1,18 @@
+"
+ COPYRIGHT (c) 1997 by Claus Gittinger
+              All Rights Reserved
+
+ 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.
+"
+"{ Package: 'stx:libbasic2' }"
+
+"{ NameSpace: Smalltalk }"
+
 SequenceableCollection subclass:#CollectingSharedQueueStream
 	instanceVariableNames:'contents readPosition writePosition dataAvailable closed
 		finalSizeIfKnown signalChanges'
@@ -8,6 +23,20 @@
 
 !CollectingSharedQueueStream class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 by Claus Gittinger
+              All Rights Reserved
+
+ 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.
+"
+!
+
 documentation
 "
     This class provides a buffering mechanism between a reader and a writer
@@ -259,5 +288,6 @@
 !CollectingSharedQueueStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CollectingSharedQueueStream.st,v 1.3 1997-03-05 16:26:06 cg Exp $'
+    ^ '$Header$'
 ! !
+