| 95 | }; |
| 96 | |
| 97 | TMappedFileInput::TMappedFileInput(const TFile& file) |
| 98 | : TMemoryInput(nullptr, 0) |
| 99 | , Impl_(new TImpl(file)) |
| 100 | { |
| 101 | Reset(Impl_->Data(), Impl_->Size()); |
| 102 | } |
| 103 | |
| 104 | TMappedFileInput::TMappedFileInput(const TString& path) |
| 105 | : TMemoryInput(nullptr, 0) |