mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
17 lines
279 B
Objective-C
17 lines
279 B
Objective-C
#ifndef __ruamoko_AutoreleasePool_h
|
|
#define __ruamoko_AutoreleasePool_h
|
|
|
|
#include "Object.h"
|
|
|
|
@interface AutoreleasePool: Object
|
|
{
|
|
unsigned count;
|
|
id [] array;
|
|
}
|
|
|
|
+ (void) addObject: (id)anObject;
|
|
- (void) addObject: (id)anObject;
|
|
|
|
@end
|
|
|
|
#endif // __ruamoko_AutoreleasePool_h
|