CmdLineParser.st
branchjv
changeset 17766 0acf634e6550
parent 17714 0d64723fe7f5
child 17883 209190914636
--- a/CmdLineParser.st	Tue May 18 14:31:21 2010 +0100
+++ b/CmdLineParser.st	Thu May 20 14:35:23 2010 +0100
@@ -1,3 +1,14 @@
+"
+ COPYRIGHT (c) 2006 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:libbasic' }"
 
 Object subclass:#CmdLineParser
@@ -7,6 +18,21 @@
 	category:'System-Support-Command line'
 !
 
+!CmdLineParser class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2006 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.
+"
+! !
 
 !CmdLineParser class methodsFor:'parsing'!
 
@@ -250,5 +276,9 @@
 !CmdLineParser class methodsFor:'documentation'!
 
 version
-    ^'$Id: CmdLineParser.st 10452 2009-06-17 11:47:57Z vranyj1 $'
+    ^'$Id: CmdLineParser.st 10524 2010-05-20 13:35:23Z vranyj1 $'
+!
+
+version_SVN
+    ^ '$Id: CmdLineParser.st 10524 2010-05-20 13:35:23Z vranyj1 $'
 ! !