| 1282 | Json::Value Nodes = Json::arrayValue; |
| 1283 | |
| 1284 | Json::ArrayIndex AddCommand(std::string const& command) |
| 1285 | { |
| 1286 | auto i = this->CommandMap.find(command); |
| 1287 | if (i == this->CommandMap.end()) { |
| 1288 | i = this->CommandMap.emplace(command, this->Commands.size()).first; |
| 1289 | this->Commands.append(command); |
| 1290 | } |
| 1291 | return i->second; |
| 1292 | } |
| 1293 | |
| 1294 | Json::ArrayIndex AddFile(std::string const& file) |
| 1295 | { |
no test coverage detected