| 11 | namespace Abyss::FileSystem { |
| 12 | |
| 13 | class CASC final : public Provider { |
| 14 | void* _storage{}; |
| 15 | |
| 16 | public: |
| 17 | explicit CASC(const std::filesystem::path &cascPath); |
| 18 | ~CASC() override; |
| 19 | bool has(std::string_view fileName) override; |
| 20 | InputStream load(std::string_view fileName) override; |
| 21 | }; |
| 22 | |
| 23 | } // namespace Abyss::FileSystem |
nothing calls this directly
no outgoing calls
no test coverage detected