diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-19T11·35+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-19T11·35+0000 |
commit | ac68840e79ce74f05ee8b31bb1d528c98b9c7f76 (patch) | |
tree | 98e8251d0537197b1c3e53068529f1e5e3114fdc /src/libexpr/parser.hh | |
parent | 2be8b5917a8040fac72e7970e94bbb436e8c35d6 (diff) |
* Refactoring: put the Nix expression evaluator in its own library so
that it can be used by multiple programs.
Diffstat (limited to 'src/libexpr/parser.hh')
-rw-r--r-- | src/libexpr/parser.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libexpr/parser.hh b/src/libexpr/parser.hh new file mode 100644 index 000000000000..5983ec5629e4 --- /dev/null +++ b/src/libexpr/parser.hh @@ -0,0 +1,10 @@ +#ifndef __PARSER_H +#define __PARSER_H + +#include "nixexpr.hh" + + +Expr parseExprFromFile(Path path); + + +#endif /* !__PARSER_H */ |