ProfileTree.st
changeset 24 10e1150b1f4b
parent 23 a85cd774be98
child 38 30fdc5e331f7
--- a/ProfileTree.st	Thu Mar 09 11:46:36 1995 +0100
+++ b/ProfileTree.st	Sat Mar 18 06:08:15 1995 +0100
@@ -1,19 +1,51 @@
+"
+ COPYRIGHT (c) 1995 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.
+"
+
 'From Smalltalk/X, Version:2.10.4 on 8-mar-1995 at 22:37:26'!
 
 Object subclass:#ProfileTree
 	 instanceVariableNames:'receiver selector class leafTally totalTally called isBlock'
 	 classVariableNames:''
 	 poolDictionaries:''
-	 category:'System-Profiler'
+	 category:'System-Debugging-Support'
 !
 
 !ProfileTree class methodsFor:'documentation'!
 
+version
+"
+$Header: /cvs/stx/stx/libbasic3/ProfileTree.st,v 1.3 1995-03-18 05:08:15 claus Exp $
+"
+!
+
 documentation
 "
     This is is used as a companion to MessageTally.
     Instances of it are used to represent the calling tree.
 "
+!
+
+copyright
+"
+ COPYRIGHT (c) 1995 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.
+"
 ! !
 
 !ProfileTree methodsFor:'prettyPrinting'!