home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-07-28 | 813 b | 38 lines | [TEXT/KAHL] |
- /*
- File: HandleObjectOwner.cp
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __HANDLEOBJECTOWNER__
- #include "HandleObjectOwner.h"
- #endif
-
- /***********************************|****************************************/
-
- #pragma segment HandleObject
-
- /***********************************|****************************************/
-
- THandleObjectOwner::THandleObjectOwner ( THandleObject* object )
- {
- fObject = object;
- }
-
- /***********************************|****************************************/
-
- THandleObjectOwner::~THandleObjectOwner ()
- {
- delete fObject;
- }
-
- /***********************************|****************************************/
-
-