quakeforge/ruamoko/scheme/Frame.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
392 B
Objective-C

#ifndef __Frame_h
#define __Frame_h
#include "SchemeObject.h"
@interface Frame: SchemeObject
{
SchemeObject[] array;
integer size;
Frame link;
}
+ (id) newWithSize: (integer) sz link: (Frame) l;
- (id) initWithSize: (integer) sz link: (Frame) l;
- (void) set: (integer) index to: (SchemeObject) o;
- (SchemeObject) get: (integer) index;
- (Frame) getLink;
@end
#endif //__FOO_h