aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.cc')
-rw-r--r--src/parser.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/parser.cc b/src/parser.cc
new file mode 100644
index 0000000..4106fc0
--- /dev/null
+++ b/src/parser.cc
@@ -0,0 +1,21 @@
+#include "parser.h"
+
+namespace SimpleParser {
+
+double calculate(std::string term) {
+ return Tree(term).solve();
+}
+
+double calculate(std::string term, const ConstantMap* constants) {
+ return Tree(term, constants).solve();
+}
+
+std::string print(std::string term) {
+ return Tree(term).print();
+}
+
+std::string print(std::string term, const ConstantMap* constants) {
+ return Tree(term, constants).print();
+}
+
+}