AbstractOperatingSystem.st
changeset 13111 26b9ff898bc6
parent 13107 1bfbec80d8e3
child 13115 c61ada06e871
--- a/AbstractOperatingSystem.st	Fri Oct 29 17:25:37 2010 +0200
+++ b/AbstractOperatingSystem.st	Fri Oct 29 17:25:55 2010 +0200
@@ -2360,6 +2360,12 @@
     ^ $/   "/ must be redefined for systems, where this is not true (i.e. MSDOS)
 !
 
+getCurrentDirectory
+    "get the current directory of the ST/X OS process"
+
+    ^ self subclassResponsibility
+!
+
 getDiskInfoOf:aDirectoryPath
     "return some disk info.
      The amount of information returned depends upon the OS, and is
@@ -6976,11 +6982,11 @@
 !AbstractOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.200 2010-10-29 10:17:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.201 2010-10-29 15:25:55 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.200 2010-10-29 10:17:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.201 2010-10-29 15:25:55 stefan Exp $'
 ! !
 
 AbstractOperatingSystem initialize!