OSHandle.st
author Claus Gittinger <cg@exept.de>
Tue, 28 Dec 1999 15:03:48 +0100
changeset 5150 d7f854b5ede8
parent 4763 d15c41a66ec4
child 5409 9b5890348f9c
permissions -rw-r--r--
keep track of changed classes (even if current project has no changeSet)

ExternalAddress subclass:#OSHandle
	instanceVariableNames:''
	classVariableNames:'Lobby'
	poolDictionaries:''
	category:'System-Support'
!


!OSHandle methodsFor:'finalization'!

disposed
    self subclassResponsibility
! !

!OSHandle methodsFor:'registration'!

register
    "register mySelf for later finalization"

    Lobby isNil ifTrue:[
        Lobby := Registry new.
    ].
    Lobby register:self
! !

!OSHandle class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/OSHandle.st,v 1.1 1999-09-18 11:14:44 cg Exp $'
! !