summaryrefslogtreecommitdiff
path: root/MLKCons.h
blob: a278e98d06f23e4f3303e31b1368355e8dc5e151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* -*- mode: objc; coding: utf-8 -*- */
/* Copyright 2008, Matthias Benkard. */

#import "MLKLispValue.h"


@interface MLKCons : MLKLispValue
{
  id _car;
  id _cdr;
}

+(MLKCons*) cons:(id)car with:(id)cdr;

-(MLKCons*) initWithCar:(id)car cdr:(id)cdr;

-(id) car;
-(id) cdr;
-(void) setCar:(id)value;
-(void) setCdr:(id)value;

-(void) dealloc;
@end