nix-super/src/fix-ng/parser.hh
Eelco Dolstra b95a3dc45b * Basic grammar and parser for the Fix language. We use libsglr and
friends to do the parsing.  The parse table is embedded in the Fix
  executable using bin2c, which converts an arbitrary file into a C
  character array.
2003-10-29 16:05:03 +00:00

16 lines
190 B
C++

#ifndef __PARSER_H
#define __PARSER_H
#include <string>
#include <aterm2.h>
#include "util.hh"
typedef ATerm Expr;
Expr parseExprFromFile(const Path & path);
#endif /* !__PARSER_H */