diff options
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h index 89c0493..d3cdbe1 100644 --- a/src/parser.h +++ b/src/parser.h @@ -3,10 +3,15 @@ #include <string> +#include "tree.h" + namespace SimpleParser { double calculate(std::string); +double calculate(std::string, const ConstantMap*); + std::string print(std::string); +std::string print(std::string, const ConstantMap*); } |