quakeforge/ruamoko/scheme/Continuation.h

17 lines
316 B
Objective-C

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