aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
blob: 54e540acaad3d6c19ba7c6fd802a0730025eea07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PARSER_SRC_PARSER_H_
#define PARSER_SRC_PARSER_H_

#include <string>

namespace SimpleParser {

double calculate(std::string);
std::string exportTree(std::string);

}

#endif  // PARSER_SRC_PARSER_H_