jtlc/parser/parser.h

16 lines
237 B
C

#ifndef PARSER_H
#define PARSER_H
#include "util/refptr.h"
#include "nodes/Node.h"
#define YYSTYPE refptr<Node>
/* include this AFTER defining YYSTYPE */
#include "parser/parser.tab.hh"
YYSTYPE parse(const char * fileName);
#endif