diff options
author | bunnei <bunneidev@gmail.com> | 2023-07-21 21:22:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 21:22:51 -0700 |
commit | 39edd2ff82674e7fae2ac3dc679f3de92174fa3e (patch) | |
tree | 2b636c0ecf2af3c1753939298f5be6ac5b69f7f3 /src/core/core.h | |
parent | efda6cc9ec4b917ff1478f0bf3a181efec929553 (diff) | |
parent | 05bc024260bdd2a7ff2319b779bbfdc5da71c4db (diff) |
Merge pull request #11129 from liamwhite/dynamic_cast
general: remove uses 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 14b2f7785..c70ea1965 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; |