FTQuant  0.1
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 }
Container for the commands Class contains the parsed command.
std::string to_json() const
int execute(Command C)
int main()
Definition: main.cpp:30