WindowsDesktop.st
branchjv
changeset 17723 0cd9ce703bab
child 17766 0acf634e6550
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WindowsDesktop.st	Wed Aug 12 14:49:00 2009 +0100
@@ -0,0 +1,33 @@
+"{ Package: 'stx:libbasic' }"
+
+AbstractDesktop subclass:#WindowsDesktop
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Desktop'
+!
+
+
+!WindowsDesktop class methodsFor:'accessing'!
+
+priority
+
+    ^1
+
+    "Modified: / 11-08-2009 / 16:40:14 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!WindowsDesktop class methodsFor:'testing'!
+
+isAvailable
+
+    ^OperatingSystem isMSWINDOWSlike
+
+    "Modified: / 11-08-2009 / 16:40:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!WindowsDesktop class methodsFor:'documentation'!
+
+version
+    ^'$Id: WindowsDesktop.st 10461 2009-08-12 13:49:00Z vranyj1 $'
+! !