mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
7713a539ca
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.
17 lines
290 B
Objective-C
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
|