blob: d3cdbe15cc69ab46c625c8d1045f1b2ea481e88c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef PARSER_SRC_PARSER_H_
#define PARSER_SRC_PARSER_H_
#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*);
}
#endif // PARSER_SRC_PARSER_H_
|