| 63 | } |
| 64 | |
| 65 | void CommandLineTool::execFromFile(string input_file){ |
| 66 | std::ifstream infile(input_file); |
| 67 | std::string input_line; |
| 68 | while (std::getline(infile, input_line)) |
| 69 | { |
| 70 | this->processCommand(input_line); |
| 71 | } |
| 72 | |
| 73 | } |
| 74 | |
| 75 | void split(const string& s, char c, |
| 76 | vector<string>& v) { |
no test coverage detected