| 151 | } |
| 152 | |
| 153 | VirtualMountPointId VirtualFileSystem::mount( |
| 154 | const std::filesystem::path& path, std::unique_ptr<FileSystem> fs) |
| 155 | { |
| 156 | const auto id = VirtualMountPointId{}; |
| 157 | m_mountPoints.push_back({id, path, std::move(fs)}); |
| 158 | return id; |
| 159 | } |
| 160 | |
| 161 | bool VirtualFileSystem::unmount(const VirtualMountPointId& id) |
| 162 | { |
no test coverage detected