GraphicsDevice.st
author Claus Gittinger <cg@exept.de>
Mon, 27 Jan 1997 19:59:23 +0100
changeset 1287 fdb9f015bf0f
parent 1283 ba106a6b1c5b
child 3198 84ed1e2f1bd6
permissions -rw-r--r--
*** empty log message ***

"
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.
"


Object subclass:#GraphicsDevice
	instanceVariableNames:'displayId'
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Graphics'
!

!GraphicsDevice 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.

    [instance variables:]
      displayId       <Handle>          the device handle

    [see also:]
        DeviceWorkstation XWorkstation

    [author:]
        Claus Gittinger
"

! !

!GraphicsDevice class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview/GraphicsDevice.st,v 1.3 1997-01-27 18:59:23 cg Exp $'
! !