A statement consists of a command and a set of arguments
| 270 | { |
| 271 | // A statement consists of a command and a set of arguments |
| 272 | struct Statement |
| 273 | { |
| 274 | // The command to invoke |
| 275 | std::string command; |
| 276 | |
| 277 | // The arguments to pass |
| 278 | ArgumentList args; |
| 279 | }; |
| 280 | } |
| 281 | |
| 282 | using StatementVec = std::vector<local::Statement>; |
no outgoing calls
no test coverage detected