mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
16 lines
253 B
C
16 lines
253 B
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
|