Skip to content
Snippets Groups Projects
Commit 2d734bb6 authored by bunnei's avatar bunnei
Browse files

Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final"

parent 2c62d925
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
namespace FileSys {
/// File system interface to the RomFS archive
class Archive_RomFS : public Archive {
class Archive_RomFS final : public Archive {
public:
Archive_RomFS(const Loader::AppLoader& app_loader);
~Archive_RomFS();
......
......@@ -13,7 +13,7 @@
namespace Loader {
/// Loads an ELF/AXF file
class AppLoader_ELF : public AppLoader {
class AppLoader_ELF final : public AppLoader {
public:
AppLoader_ELF(const std::string& filename);
~AppLoader_ELF();
......
......@@ -145,7 +145,7 @@ struct ExHeader_Header{
namespace Loader {
/// Loads an NCCH file (e.g. from a CCI, or the first NCCH in a CXI)
class AppLoader_NCCH : public AppLoader {
class AppLoader_NCCH final : public AppLoader {
public:
AppLoader_NCCH(const std::string& filename);
~AppLoader_NCCH();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment