jtlc/parser/parser.h
josh 19dd46d14d created nodes subdir and moved Node.{h,cc} there
git-svn-id: svn://anubis/jtlc/trunk@11 f5bc74b8-7b62-4e90-9214-7121d538519f
2010-01-13 19:38:31 +00:00

13 lines
162 B
C

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