-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFinal.mpc
64 lines (60 loc) · 1.09 KB
/
Final.mpc
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
// Honor Pledge:
//
// I pledge that I have neither given nor
// received any help on this assignment.
//
// blakbenn
project (Final){
exename = Final
specific (make) {
compile_flags += -std=c++11
}
Source_Files {
driver.cpp
Eval_Expr_Tree.cpp
Expr_Builder.cpp
Visitor.cpp
Expr_Node.cpp
Binary_Expr_Node.cpp
Add_Node.cpp
Subtract_Node.cpp
Multiply_Node.cpp
Divide_Node.cpp
Mod_Node.cpp
Parentheses_Node.cpp
Closed_Parentheses_Node.cpp
Integer_Node.cpp
Expr_Tree_Builder.cpp
}
Template_Files {
BaseArray.cpp
Array.cpp
Stack.cpp
Stack_Iterator.cpp
}
Header_Files{
BaseArray.h
Array.h
Stack.h
Eval_Expr_Tree.h
Expr_Builder.h
Expr_Tree_Builder.h
Visitor.h
Expr_Node.h
Binary_Expr_Node.h
Add_Node.h
Subtract_Node.h
Multiply_Node.h
Divide_Node.h
Mod_Node.h
Parentheses_Node.h
Closed_Parentheses_Node.h
Integer_Node.h
Stack_Iterator.h
}
Inline_Files{
BaseArray.inl
Array.inl
Stack.inl
}
}