Import getAllPaths() to StackedFileSystemAdapter so it is also availabe there.

This commit is contained in:
Patrick 2025-03-02 20:06:46 +01:00
parent b6657189d3
commit ce26cda739

View File

@ -34,6 +34,7 @@ public:
Optional<fs::path> getNativePath(const fs::path& file) override;
StreamError open(const fs::path& path, FileOpenMode mode, std::unique_ptr<Stream>& outStream) override;
void getAllPaths(const fs::path &path, std::vector<PathReference> &outPaths) override;
using FileSystemAdapter::getAllPaths;
inline void addAdapter(std::unique_ptr<FileSystemAdapter>&& adapter) {
adapters_.push_back(std::move(adapter));