initial checkin
authorClaus Gittinger <cg@exept.de>
Mon, 04 Mar 2013 13:34:14 +0100
changeset 14819 ff6be3d27a81
parent 14818 bf4f76418acf
child 14820 79d0f328ac64
initial checkin
OSXOperatingSystem.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/OSXOperatingSystem.st	Mon Mar 04 13:34:14 2013 +0100
@@ -0,0 +1,32 @@
+"{ Package: 'stx:libbasic' }"
+
+UnixOperatingSystem subclass:#OSXOperatingSystem
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'OS-Unix'
+!
+
+
+!OSXOperatingSystem class methodsFor:'file queries'!
+
+caseSensitiveFilenames
+    "return true, if the OS has caseSensitive file naming.
+     On MSDOS, this will return false;
+     on a real OS, we return true."
+
+    ^ false
+
+    "Modified: / 5.6.1998 / 18:35:18 / cg"
+! !
+
+!OSXOperatingSystem class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/OSXOperatingSystem.st,v 1.1 2013-03-04 12:34:14 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic/OSXOperatingSystem.st,v 1.1 2013-03-04 12:34:14 cg Exp $'
+! !
+