mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
18 lines
256 B
C
18 lines
256 B
C
|
#ifndef __SchemeObject_h
|
||
|
#define __SchemeObject_h
|
||
|
#include "Object.h"
|
||
|
#define true YES
|
||
|
#define false NO
|
||
|
|
||
|
@interface SchemeObject: Object
|
||
|
{
|
||
|
BOOL marked;
|
||
|
}
|
||
|
- (void) mark;
|
||
|
- (BOOL) sweep;
|
||
|
//+ (id) alloc;
|
||
|
- (string) printForm;
|
||
|
@end
|
||
|
|
||
|
#endif //__SchemeObject_h
|