FTQuant
0.1
src
main.cpp
Go to the documentation of this file.
1
#include <
SyntaxParser.hpp
>
2
30
int
main
() {
31
Execution
Ex;
32
while
(
true
)
33
{
34
std::string cmd;
35
std::getline(std::cin, cmd);
36
37
if
(cmd ==
"EXIT"
)
break
;
38
39
Command
C(cmd);
40
41
std::cout << C.
to_json
() << std::endl;
42
std::cout << Ex.
execute
(C) << std::endl;
43
}
44
return
0;
45
}
SyntaxParser.hpp
Command
Container for the commands Class contains the parsed command.
Definition:
SyntaxParser.hpp:97
Command::to_json
std::string to_json() const
Definition:
SyntaxParser.cpp:17
Execution
Definition:
SyntaxParser.hpp:116
Execution::execute
int execute(Command C)
Definition:
SyntaxParser.cpp:133
main
int main()
Definition:
main.cpp:30
Generated by
1.9.1