HostGraphicsDevice.st
changeset 1284 d17f4d91174d
child 1315 b8872f2bdbad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HostGraphicsDevice.st	Mon Jan 27 18:52:35 1997 +0100
@@ -0,0 +1,61 @@
+"
+COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+
+
+GraphicsDevice subclass:#HostGraphicsDevice
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Graphics'
+!
+
+!HostGraphicsDevice class methodsFor:'documentation'!
+
+copyright
+"
+COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+
+!
+
+documentation
+"
+    this abstract class was inserted to provide a home for ST-80 classes
+    (previously, DeviceWorkstation was directly under Object).
+
+    In ST/X, this is mostly dummy.
+
+    [see also:]
+        DeviceWorkstation XWorkstation
+
+    [author:]
+        Claus Gittinger
+"
+
+
+! !
+
+!HostGraphicsDevice class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview/HostGraphicsDevice.st,v 1.1 1997-01-27 17:52:35 cg Exp $'
+! !