00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #import "OFObject.h"
00013 #import "OFArray.h"
00014 #import "OFList.h"
00015
00022 @interface OFAutoreleasePool: OFObject
00023 {
00024 OFArray *objects;
00025 OFAutoreleasePool *next, *prev;
00026 }
00027
00034 + (void)addObjectToTopmostPool: (OFObject*)obj;
00035
00036 + (void)releaseAll;
00037
00043 - addObject: (OFObject*)obj;
00044
00053 - releaseObjects;
00054
00058 - (void)release;
00059
00066 - (void)drain;
00067 @end