#ifndef PARSER_SRC_PARSER_H_ #define PARSER_SRC_PARSER_H_ #include #include #include "tree.h" namespace SimpleParser { double calculate(std::string); namespace { int8_t getPriority(char); std::vector lexer(std::string); Node* buildTree(Tree*, std::string); } } #endif // PARSER_SRC_PARSER_H_