| 6 | namespace Abyss::FileSystem { |
| 7 | |
| 8 | class Provider { |
| 9 | public: |
| 10 | virtual ~Provider() = default; |
| 11 | virtual bool has(std::string_view path) = 0; |
| 12 | virtual InputStream load(std::string_view path) = 0; |
| 13 | }; |
| 14 | |
| 15 | } // namespace Abyss::FileSystem |
nothing calls this directly
no outgoing calls
no test coverage detected