0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-10 03:02:10 +00:00
quakeforge/ruamoko/scheme/Parser.h

17 lines
314 B
C
Raw Normal View History

#ifndef __Parser_h
#define __Parser_h
#include "Lexer.h"
@interface Parser: SchemeObject
{
2011-02-14 13:39:43 +00:00
Lexer *lexer;
string file;
}
+ (id) newFromSource: (string) s file: (string) f;
- (id) initWithSource: (string) s file: (string) f;
2011-02-14 13:39:43 +00:00
- (SchemeObject *) readAtomic;
- (SchemeObject *) read;
@end
#endif //__Parser_h