quakeforge/ruamoko/scheme/Lexer.h
2005-05-02 02:33:44 +00:00

15 lines
253 B
Objective-C

#ifndef __Lexer_h
#define __Lexer_h
#include "SchemeObject.h"
#include "Symbol.h"
@interface Lexer: Object
{
string source;
}
+ (id) newFromSource: (string) s;
- (id) initWithSource: (string) s;
- (SchemeObject) nextToken;
@end
#endif //__Lexer_h