| 286 | } |
| 287 | |
| 288 | void InputDevices::Command::toFile(FILE* f) |
| 289 | { |
| 290 | fputs(m_statement.c_str(), f); |
| 291 | // Add newline to make the file more readable. |
| 292 | fputc('\n', f); |
| 293 | } |
| 294 | |
| 295 | void InputDevices::commandsToFile(FILE* f) |
| 296 | { |
no test coverage detected