summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-07-04 19:25:30 +0200
committerbunnei <bunneidev@gmail.com>2014-07-05 02:37:50 +0200
commit1099d83455153f9d81b10b54a788bc9fe91f33e9 (patch)
tree1de0dcbcdbdc5339c677e4eb703b44c6f4963508 /src
parentMarked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final" (diff)
downloadyuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.tar
yuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.tar.gz
yuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.tar.bz2
yuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.tar.lz
yuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.tar.xz
yuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.tar.zst
yuzu-1099d83455153f9d81b10b54a788bc9fe91f33e9.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/archive_romfs.h8
-rw-r--r--src/core/loader/elf.h4
-rw-r--r--src/core/loader/ncch.h14
3 files changed, 13 insertions, 13 deletions
diff --git a/src/core/file_sys/archive_romfs.h b/src/core/file_sys/archive_romfs.h
index e5664ba16..8a31190a9 100644
--- a/src/core/file_sys/archive_romfs.h
+++ b/src/core/file_sys/archive_romfs.h
@@ -20,13 +20,13 @@ namespace FileSys {
class Archive_RomFS final : public Archive {
public:
Archive_RomFS(const Loader::AppLoader& app_loader);
- ~Archive_RomFS();
+ ~Archive_RomFS() override;
/**
* Get the IdCode of the archive (e.g. RomFS, SaveData, etc.)
* @return IdCode of the archive
*/
- IdCode GetIdCode() const { return IdCode::RomFS; };
+ IdCode GetIdCode() const override { return IdCode::RomFS; };
/**
* Read data from the archive
@@ -35,13 +35,13 @@ public:
* @param buffer Buffer to read data into
* @return Number of bytes read
*/
- size_t Read(const u64 offset, const u32 length, u8* buffer) const;
+ size_t Read(const u64 offset, const u32 length, u8* buffer) const override;
/**
* Get the size of the archive in bytes
* @return Size of the archive in bytes
*/
- size_t GetSize() const;
+ size_t GetSize() const override;
private:
std::vector<u8> raw_data;
diff --git a/src/core/loader/elf.h b/src/core/loader/elf.h
index cec1167ca..5ae88439a 100644
--- a/src/core/loader/elf.h
+++ b/src/core/loader/elf.h
@@ -16,13 +16,13 @@ namespace Loader {
class AppLoader_ELF final : public AppLoader {
public:
AppLoader_ELF(const std::string& filename);
- ~AppLoader_ELF();
+ ~AppLoader_ELF() override;
/**
* Load the bootable file
* @return ResultStatus result of function
*/
- ResultStatus Load();
+ ResultStatus Load() override;
private:
std::string filename;
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h
index de89280ea..29b59aa11 100644
--- a/src/core/loader/ncch.h
+++ b/src/core/loader/ncch.h
@@ -148,48 +148,48 @@ namespace Loader {
class AppLoader_NCCH final : public AppLoader {
public:
AppLoader_NCCH(const std::string& filename);
- ~AppLoader_NCCH();
+ ~AppLoader_NCCH() override;
/**
* Load the application
* @return ResultStatus result of function
*/
- ResultStatus Load();
+ ResultStatus Load() override;
/**
* Get the code (typically .code section) of the application
* @param buffer Reference to buffer to store data
* @return ResultStatus result of function
*/
- ResultStatus ReadCode(std::vector<u8>& buffer) const;
+ ResultStatus ReadCode(std::vector<u8>& buffer) const override;
/**
* Get the icon (typically icon section) of the application
* @param buffer Reference to buffer to store data
* @return ResultStatus result of function
*/
- ResultStatus ReadIcon(std::vector<u8>& buffer) const;
+ ResultStatus ReadIcon(std::vector<u8>& buffer) const override;
/**
* Get the banner (typically banner section) of the application
* @param buffer Reference to buffer to store data
* @return ResultStatus result of function
*/
- ResultStatus ReadBanner(std::vector<u8>& buffer) const;
+ ResultStatus ReadBanner(std::vector<u8>& buffer) const override;
/**
* Get the logo (typically logo section) of the application
* @param buffer Reference to buffer to store data
* @return ResultStatus result of function
*/
- ResultStatus ReadLogo(std::vector<u8>& buffer) const;
+ ResultStatus ReadLogo(std::vector<u8>& buffer) const override;
/**
* Get the RomFS of the application
* @param buffer Reference to buffer to store data
* @return ResultStatus result of function
*/
- ResultStatus ReadRomFS(std::vector<u8>& buffer) const;
+ ResultStatus ReadRomFS(std::vector<u8>& buffer) const override;
private: