OSXOperatingSystem.st
changeset 14819 ff6be3d27a81
child 15771 e807ffa5e642
equal deleted inserted replaced
14818:bf4f76418acf 14819:ff6be3d27a81
       
     1 "{ Package: 'stx:libbasic' }"
       
     2 
       
     3 UnixOperatingSystem subclass:#OSXOperatingSystem
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'OS-Unix'
       
     8 !
       
     9 
       
    10 
       
    11 !OSXOperatingSystem class methodsFor:'file queries'!
       
    12 
       
    13 caseSensitiveFilenames
       
    14     "return true, if the OS has caseSensitive file naming.
       
    15      On MSDOS, this will return false;
       
    16      on a real OS, we return true."
       
    17 
       
    18     ^ false
       
    19 
       
    20     "Modified: / 5.6.1998 / 18:35:18 / cg"
       
    21 ! !
       
    22 
       
    23 !OSXOperatingSystem class methodsFor:'documentation'!
       
    24 
       
    25 version
       
    26     ^ '$Header: /cvs/stx/stx/libbasic/OSXOperatingSystem.st,v 1.1 2013-03-04 12:34:14 cg Exp $'
       
    27 !
       
    28 
       
    29 version_CVS
       
    30     ^ '$Header: /cvs/stx/stx/libbasic/OSXOperatingSystem.st,v 1.1 2013-03-04 12:34:14 cg Exp $'
       
    31 ! !
       
    32