-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpressions.h
120 lines (97 loc) · 2.45 KB
/
Expressions.h
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#ifndef Expressions_H
#define Expressions_H
#include <list>
#include <string>
#include "Node.h"
class AVisitor;
/////////////////////////////////////////////////
//
// IExpression
//
class IExpression : public INode
{
public:
virtual ~IExpression() = default;
};
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// CExpressionNumber
//
class CExpressionNumber : public IExpression
{
private:
int m_iValue;
public:
CExpressionNumber(int iValue);
int getValue();
void accept(AVisitor *pVisitor) override;
};
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// CExpressionVariable
//
class CExpressionVariable : public IExpression
{
private:
std::string m_sName;
public:
CExpressionVariable(std::string sName);
std::string getName();
void accept(AVisitor *pVisitor) override;
};
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// CExpressionFunctional
//
class CExpressionFunctional : public IExpression
{
private:
std::string m_sFuncName;
std::list<IExpression*> m_lstArgs;
public:
CExpressionFunctional(std::string sFuncName);
CExpressionFunctional(std::string sFuncName, std::list<IExpression*> lstArgs);
void addArgument(IExpression *pArg);
std::string getFunctionName();
std::list<IExpression*> getArgumentList();
void accept(AVisitor *pVisitor) override;
};
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// CExpressionUnary
//
class CExpressionUnary : public IExpression
{
private:
char m_chOperation;
IExpression* m_pExpr;
public:
CExpressionUnary(char chOperation, IExpression* pExpr);
char getOperation();
IExpression* getExpression();
void accept(AVisitor *pVisitor) override;
};
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// CExpressionVariable
//
class CExpressionBinary : public IExpression
{
private:
IExpression *m_pLeftOperand;
IExpression *m_pRightOperand;
char m_chOperation;
public:
CExpressionBinary(char chOperation, IExpression *pLeftOperand, IExpression *pRightOperand);
char getOperation();
IExpression* getLeftOperand();
IExpression* getRightOperand();
void accept(AVisitor *pVisitor) override;
};
/////////////////////////////////////////////////
#endif // Expressions_H