| 86 | }; |
| 87 | |
| 88 | std::shared_ptr<DataFile> FetchBackend::createFile(mode_t mode) { |
| 89 | return std::make_shared<FetchFile>("", mode, this, proxy); |
| 90 | } |
| 91 | |
| 92 | std::shared_ptr<Directory> FetchBackend::createDirectory(mode_t mode) { |
| 93 | return std::make_shared<FetchDirectory>("", mode, this, proxy); |
no outgoing calls
no test coverage detected