mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
281b683e14
standard, implemented in Ruamoko. Currently works for a few simple "Hello, world!" programs.
33 lines
510 B
R
33 lines
510 B
R
#include "Frame.h"
|
|
|
|
@implementation Frame
|
|
+ (id) newWithSize: (integer) sz link: (Frame) l
|
|
{
|
|
return [[self alloc] initWithSize: sz link: l];
|
|
}
|
|
|
|
- (id) initWithSize: (integer) sz link: (Frame) l
|
|
{
|
|
self = [super init];
|
|
size = sz;
|
|
link = l;
|
|
array = obj_malloc(@sizeof (id) * size);
|
|
return self;
|
|
}
|
|
|
|
- (void) set: (integer) index to: (SchemeObject) o
|
|
{
|
|
array[index] = o;
|
|
}
|
|
|
|
- (SchemeObject) get: (integer) index
|
|
{
|
|
return array[index];
|
|
}
|
|
|
|
- (Frame) getLink
|
|
{
|
|
return link;
|
|
}
|
|
|
|
@end
|