AATree.st
changeset 2279 cb00c64a12f9
parent 2266 d04df8bb00ea
child 2404 9a2681a6525c
--- a/AATree.st	Mon Sep 28 19:12:12 2009 +0200
+++ b/AATree.st	Tue Sep 29 21:32:05 2009 +0200
@@ -1,3 +1,14 @@
+"
+ COPYRIGHT (c) 2009 by eXept Software AG
+              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' }"
 
 BinaryTree subclass:#AATree
@@ -9,6 +20,20 @@
 
 !AATree class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2009 by eXept Software AG
+              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
 "
     An AA tree is a form of balanced tree used for storing and retrieving ordered data efficiently.
@@ -265,5 +290,9 @@
 !AATree class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/AATree.st,v 1.1 2009-09-28 16:17:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/AATree.st,v 1.2 2009-09-29 19:32:05 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic2/AATree.st,v 1.2 2009-09-29 19:32:05 cg Exp $'
 ! !