quakeforge/ruamoko/scheme/Lexer.h

16 lines
253 B
C
Raw Normal View History

#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