quakeforge/ruamoko/include/AutoreleasePool.h
Jeff Teunissen 7713a539ca Okay, y'all...the Ruamoko root class, Object, has been replaced with another
class with the same name. This will break things. To support it, there are
three new classes, one of which is incomplete (AutoreleasePool). It'll get
finished soonish, but the rest of the class lib will need some updating to
work.
2003-07-29 18:02:03 +00:00

17 lines
290 B
Objective-C

#ifndef __ruamoko_AutoreleasePool_h
#define __ruamoko_AutoreleasePool_h
#include "Object.h"
@interface AutoreleasePool: Object
{
/*unsigned*/integer count;
id [] array;
}
+ (void) addObject: (id)anObject;
- (void) addObject: (id)anObject;
@end
#endif // __ruamoko_AutoreleasePool_h