diff options
| author | bunnei <bunneidev@gmail.com> | 2018-09-04 11:51:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-04 11:51:54 -0400 |
| commit | 8ec1e168672a0e3798eb45680e0fed59f3775645 (patch) | |
| tree | c7358ce2a72143b4fe1704c889716075cce58f98 /src/core/file_sys/registered_cache.h | |
| parent | 5a29b358aace5d43fd0208fc390b3198af995174 (diff) | |
| parent | a813c10e1c71318925f2e65f2b0926099485bbc4 (diff) | |
Merge pull request #1235 from lioncash/forward-decl
file_sys: Replace includes with forward declarations where applicable
Diffstat (limited to 'src/core/file_sys/registered_cache.h')
| -rw-r--r-- | src/core/file_sys/registered_cache.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/core/file_sys/registered_cache.h b/src/core/file_sys/registered_cache.h index 7b8955dfa..fe2cdc3d9 100644 --- a/src/core/file_sys/registered_cache.h +++ b/src/core/file_sys/registered_cache.h @@ -11,15 +11,18 @@ #include <string> #include <vector> #include <boost/container/flat_map.hpp> -#include "common/common_funcs.h" #include "common/common_types.h" -#include "content_archive.h" -#include "core/file_sys/nca_metadata.h" #include "core/file_sys/vfs.h" namespace FileSys { -class XCI; class CNMT; +class NCA; +class XCI; + +enum class ContentRecordType : u8; +enum class TitleType : u8; + +struct ContentRecord; using NcaID = std::array<u8, 0x10>; using RegisteredCacheParsingFunction = std::function<VirtualFile(const VirtualFile&, const NcaID&)>; |
