| 50 | } |
| 51 | |
| 52 | Status CheckClosed() const { |
| 53 | if (closed_) { |
| 54 | return Status::Invalid("Operation on closed file"); |
| 55 | } |
| 56 | return Status::OK(); |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | TransformInputStream::TransformInputStream(std::shared_ptr<InputStream> wrapped, |
no test coverage detected