| 234 | return output != nullptr; |
| 235 | } |
| 236 | bool writeFile(const void* data, size_t n) override |
| 237 | { |
| 238 | fwrite(data, 1, n, output); |
| 239 | return true; |
| 240 | } |
| 241 | void endFile() override |
| 242 | { |
| 243 | if (output != nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected