quakeforge/ruamoko/scheme/Continuation.h
Brian Koropoff 281b683e14 Initial commit of a future partial implementation of the R5RS Scheme
standard, implemented in Ruamoko.  Currently works for a few simple
"Hello, world!" programs.
2005-05-01 11:48:36 +00:00

18 lines
462 B
Objective-C

#ifndef __Continuation_h
#define __Continuation_h
#include "SchemeObject.h"
#include "Procedure.h"
#include "state.h"
@interface Continuation: Procedure
{
state_t state;
SchemeObject cont;
Frame env;
}
+ (id) newWithState: (state_t []) st environment: (Frame) e continuation: (Continuation) c pc: (integer) p;
- (id) initWithState: (state_t []) st environment: (Frame) e continuation: (Continuation) c pc: (integer) p;
@end
#endif //__Procedure_h