0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-03 07:43:58 +00:00
quakeforge/ruamoko/scheme/Lambda.h
2011-02-14 23:10:46 +09:00

17 lines
355 B
Objective-C

#ifndef __Lambda_h
#define __Lambda_h
#include "Procedure.h"
#include "Cons.h"
#include "Frame.h"
#include "CompiledCode.h"
@interface Lambda: Procedure
{
Frame *env;
CompiledCode *code;
}
+ (id) newWithCode: (CompiledCode *) c environment: (Frame *) e;
- (id) initWithCode: (CompiledCode *) c environment: (Frame *) e;
@end
#endif //__Lambda_h