UnitConverter.st
changeset 884 1345b2f1cf43
parent 868 4e5ee397a268
child 886 e2f639b6b0f6
equal deleted inserted replaced
883:af72d62dc635 884:1345b2f1cf43
       
     1 "
       
     2  COPYRIGHT (c) 1996 eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
       
    14 
     1 Object subclass:#UnitConverter
    15 Object subclass:#UnitConverter
     2 	instanceVariableNames:''
    16 	instanceVariableNames:''
     3 	classVariableNames:'Conversions Scaling Aliases Constants'
    17 	classVariableNames:'Conversions Scaling Aliases Constants'
     4 	poolDictionaries:''
    18 	poolDictionaries:''
     5 	category:'Magnitude-General'
    19 	category:'Magnitude-General'
     6 !
    20 !
     7 
    21 
     8 !UnitConverter class methodsFor:'documentation'!
    22 !UnitConverter class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 1996 eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 
       
    37 
       
    38 !
     9 
    39 
    10 documentation
    40 documentation
    11 "
    41 "
    12     In order to collect various unit conversions into one central
    42     In order to collect various unit conversions into one central
    13     manageable (and especially: browsable) place, all previously
    43     manageable (and especially: browsable) place, all previously
   815 ! !
   845 ! !
   816 
   846 
   817 !UnitConverter class methodsFor:'documentation'!
   847 !UnitConverter class methodsFor:'documentation'!
   818 
   848 
   819 version
   849 version
   820     ^ '$Header: /cvs/stx/stx/libbasic2/UnitConverter.st,v 1.15 2000-01-18 15:21:09 cg Exp $'
   850     ^ '$Header: /cvs/stx/stx/libbasic2/UnitConverter.st,v 1.16 2000-02-18 14:40:57 cg Exp $'
   821 ! !
   851 ! !