From ac68840e79ce74f05ee8b31bb1d528c98b9c7f76 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 19 Nov 2003 11:35:41 +0000 Subject: * Refactoring: put the Nix expression evaluator in its own library so that it can be used by multiple programs. --- src/libexpr/parser.hh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/libexpr/parser.hh (limited to 'src/libexpr/parser.hh') 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 */ -- cgit 1.4.1