aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h
index 7e594ca..677717a 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -1,14 +1,15 @@
#ifndef PARSER_SRC_PARSER_H_
#define PARSER_SRC_PARSER_H_
+#include <string>
#include <vector>
-#include <stack>
#include "tree.h"
namespace SimpleParser {
double calculate(std::string);
+std::string exportTree(std::string);
namespace {
int8_t getPriority(char);