Stack.st
changeset 1311 e20fa06ce5f8
parent 1245 99e070f7c351
child 3447 e24ea4be432e
--- a/Stack.st	Fri Aug 29 21:33:49 2003 +0200
+++ b/Stack.st	Sat Aug 30 14:37:02 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 1996 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' }"
 
 OrderedCollection subclass:#Stack
@@ -9,6 +21,20 @@
 
 !Stack class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1996 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
 "
     A simple implementation of a Stack.
@@ -109,5 +135,5 @@
 !Stack class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Stack.st,v 1.6 2003-06-11 08:36:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Stack.st,v 1.7 2003-08-30 12:36:47 cg Exp $'
 ! !