aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
blob: 89c04938137edf26474e11d1b8a4e189b7aad96c (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 print(std::string);

}

#endif  // PARSER_SRC_PARSER_H_