The following text is boilerplate that forwards all methods to target().
| 323 | |
| 324 | // The following text is boilerplate that forwards all methods to target(). |
| 325 | Status NewSequentialFile(const std::string& f, SequentialFile** r) override { |
| 326 | return target_->NewSequentialFile(f, r); |
| 327 | } |
| 328 | Status NewRandomAccessFile(const std::string& f, |
| 329 | RandomAccessFile** r) override { |
| 330 | return target_->NewRandomAccessFile(f, r); |
nothing calls this directly
no test coverage detected