mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
438073e110
properly so far.
15 lines
253 B
Objective-C
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
|