diff options
author | Liam <byteslice@airmail.cc> | 2023-07-21 19:22:14 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-07-21 19:22:14 -0400 |
commit | 4bee333d847783582f94b5212cb7641e0936dc4c (patch) | |
tree | b7ac3b4f1c89eafd006fcfd52f487cda60c5cf05 /src/core/core.h | |
parent | efda6cc9ec4b917ff1478f0bf3a181efec929553 (diff) |
general: reduce use of dynamic_cast
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index 14b2f77850..c70ea1965a 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -381,6 +381,9 @@ public: [[nodiscard]] FileSys::ContentProvider& GetContentProvider(); [[nodiscard]] const FileSys::ContentProvider& GetContentProvider() const; + [[nodiscard]] FileSys::ContentProviderUnion& GetContentProviderUnion(); + [[nodiscard]] const FileSys::ContentProviderUnion& GetContentProviderUnion() const; + [[nodiscard]] Service::FileSystem::FileSystemController& GetFileSystemController(); [[nodiscard]] const Service::FileSystem::FileSystemController& GetFileSystemController() const; |