diff options
author | bunnei <bunneidev@gmail.com> | 2014-07-04 13:25:30 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-07-04 20:37:50 -0400 |
commit | 1099d83455153f9d81b10b54a788bc9fe91f33e9 (patch) | |
tree | 1de0dcbcdbdc5339c677e4eb703b44c6f4963508 /src/core/loader/ncch.h | |
parent | 2d734bb6c5cf1a428f8ce2a6d13955ee4ff872eb (diff) |
Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as "override".
Diffstat (limited to 'src/core/loader/ncch.h')
-rw-r--r-- | src/core/loader/ncch.h | 14 |
1 files changed, 7 insertions, 7 deletions
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: |