diff options
author | Subv <subv2112@gmail.com> | 2015-01-01 18:44:38 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-01-03 03:13:55 +0100 |
commit | 2f9a2d410db05489ff3fa0bfee32817cb414949f (patch) | |
tree | 999a7bac65299337b5681c63112ded9c18c00bab /src/core/file_sys | |
parent | Archives: Reduced duplicate code in RomFS and SaveCheck. (diff) | |
download | yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.tar yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.tar.gz yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.tar.bz2 yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.tar.lz yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.tar.xz yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.tar.zst yuzu-2f9a2d410db05489ff3fa0bfee32817cb414949f.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/ivfc_archive.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/file_sys/ivfc_archive.h b/src/core/file_sys/ivfc_archive.h index fd9a3042d..a9b34434f 100644 --- a/src/core/file_sys/ivfc_archive.h +++ b/src/core/file_sys/ivfc_archive.h @@ -16,6 +16,11 @@ namespace FileSys { +/** + * Helper which implements an interface to deal with IVFC images used in some archives + * This should be subclassed by concrete archive types, which will provide the + * input data (load the raw IVFC archive) and override any required methods + */ class IVFCArchive : public ArchiveBackend { public: IVFCArchive(); |