-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.hpp
64 lines (56 loc) · 1.03 KB
/
token.hpp
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef _TOKEN_HPP_
#define _TOKEN_HPP_ 1
#include "includes.hpp"
enum Operation {
ADD,
SUB,
MUL,
DIV,
EXP,
MOD,
NEG, // THIS IS NOT TO BE USED FOR A TOKEN
PAR // THIS IS NOT TO BE USED FOR A TOKEN
};
enum TokenType {
INT_T,
BINOP_T,
PAREN_T
};
enum ParenSide {
LEFT,
RIGHT
};
class Token {
public:
Token();
Token(std::string token);
virtual std::string getToken();
virtual TokenType getType() = 0;
protected:
std::string token;
};
class IntToken: public Token {
public:
IntToken(std::string token);
int getVal();
inline TokenType getType() { return INT_T; }
private:
int value;
};
class ParenToken: public Token {
public:
ParenToken(std::string token);
ParenSide getSide();
inline TokenType getType() { return PAREN_T; }
private:
ParenSide side;
};
class BinaryOpToken: public Token {
public:
BinaryOpToken(std::string token);
Operation getBinOp();
inline TokenType getType() { return BINOP_T; }
private:
Operation operation;
};
#endif