quakeforge/ruamoko/include/AutoreleasePool.h
Bill Currie 4518e6af91 First stab at implementing autorelease.
It's probably nowhere near right, but probably ok for now (I need to study
the GNUStep code). I'm unhappy with the menu code hook, but it will have
to do for now.
2010-11-24 17:01:18 +09:00

18 lines
277 B
Objective-C

#ifndef __ruamoko_AutoreleasePool_h
#define __ruamoko_AutoreleasePool_h
#include "Object.h"
@class Array;
@interface AutoreleasePool: Object
{
Array array;
}
+ (void) addObject: (id)anObject;
- (void) addObject: (id)anObject;
@end
#endif // __ruamoko_AutoreleasePool_h