home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / NSAutoreleasePool.h < prev    next >
Encoding:
Text File  |  1996-09-11  |  379 b   |  22 lines

  1. /*    NSAutoreleasePool.h
  2.     Delayed object release
  3.     Copyright 1994-1996, NeXT Software, Inc.  All rights reserved.
  4. */
  5.  
  6. #import <Foundation/NSObject.h>
  7.  
  8. @interface NSAutoreleasePool : NSObject {
  9. @private
  10.     void        *_token;
  11.     NSAutoreleasePool    *_next;
  12.     NSAutoreleasePool    *_previous;
  13.     void        *_reserved;
  14. }
  15.  
  16. + (void)addObject:(id)anObject;
  17.  
  18. - (void)addObject:(id)anObject;
  19.  
  20. @end
  21.  
  22.