| 355 | FileOutputStream::FileOutputStream() { impl_.reset(new FileOutputStreamImpl()); } |
| 356 | |
| 357 | FileOutputStream::~FileOutputStream() { internal::CloseFromDestructor(this); } |
| 358 | |
| 359 | Result<std::shared_ptr<FileOutputStream>> FileOutputStream::Open(const std::string& path, |
| 360 | bool append) { |
nothing calls this directly
no test coverage detected