blob: 0aeaae99aab1d3f066a65c81bd44aa699e40835b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include <stdlib.h>
#include <stack>
#include <exception>
#include "tree.h"
struct ParserResult
{
double result;
string tree;
};
class Parser
{
public:
ParserResult calculate(string, bool);
private:
int getPriority(char);
vector<string>* lexer(string);
Node* buildTree(Tree**, string);
};
class parenthese_exception: public exception
{
virtual const char* what() const throw()
{
return "Invalid parenthesized expression - check your input term.";
}
};
class operator_exception: public exception
{
virtual const char* what() const throw()
{
return "Unexpected operator placement - check your input term.";
}
};
|