diff options
author | ichfly <Meier.Hanz@gmx.net> | 2014-12-07 21:47:06 +0100 |
---|---|---|
committer | ichfly <Meier.Hanz@gmx.net> | 2014-12-08 18:06:43 +0100 |
commit | 1aa969741dabecd3516ca79b2e7d3106cf9d3d9a (patch) | |
tree | 428a01356b9714387e3a932ad5297979e42bd4e6 /src/core/loader/3dsx.h | |
parent | Merge pull request #245 from rohit-n/null-nullptr (diff) | |
download | yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.gz yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.bz2 yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.lz yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.xz yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.zst yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.zip |
Diffstat (limited to 'src/core/loader/3dsx.h')
-rw-r--r-- | src/core/loader/3dsx.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h new file mode 100644 index 000000000..848d3ef8a --- /dev/null +++ b/src/core/loader/3dsx.h @@ -0,0 +1,32 @@ +// Copyright 2014 Dolphin Emulator Project / Citra Emulator Project +// Licensed under GPLv2+ +// Refer to the license.txt file included. + +#pragma once + +#include "common/common_types.h" +#include "core/loader/loader.h" + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Loader namespace + +namespace Loader { + +/// Loads an 3DSX file +class AppLoader_THREEDSX final : public AppLoader { +public: + AppLoader_THREEDSX(const std::string& filename); + ~AppLoader_THREEDSX() override; + + /** + * Load the bootable file + * @return ResultStatus result of function + */ + ResultStatus Load() override; + +private: + std::string filename; + bool is_loaded; +}; + +} // namespace Loader |