| 197 | } |
| 198 | |
| 199 | Filesystem_Stream::InputStream Filesystem::OpenFile(std::string_view filename, const Span<const std::string_view> exts) const { |
| 200 | return OpenInputStream(tree->FindFile(filename, exts)); |
| 201 | } |
| 202 | |
| 203 | Filesystem_Stream::InputStream Filesystem::OpenFile(std::string_view directory, std::string_view filename, const Span<const std::string_view> exts) const { |
| 204 | return OpenInputStream(tree->FindFile(directory, filename, exts)); |
no test coverage detected