| 294 | ReadableFile::ReadableFile(MemoryPool* pool) { impl_.reset(new ReadableFileImpl(pool)); } |
| 295 | |
| 296 | ReadableFile::~ReadableFile() { internal::CloseFromDestructor(this); } |
| 297 | |
| 298 | Result<std::shared_ptr<ReadableFile>> ReadableFile::Open(const std::string& path, |
| 299 | MemoryPool* pool) { |
nothing calls this directly
no test coverage detected