diff options
author | Lioncash <mathew1800@gmail.com> | 2022-02-02 18:59:36 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-02-02 19:17:12 +0100 |
commit | f785f73e9279dcb9cfdee93da694d7a1f55142ea (patch) | |
tree | 52edfca975d8df963ef38987ea1e99b7fb6f5553 /src/core/loader/loader.h | |
parent | general: Move deleted copy/move constructor/assignment operators to public interface (diff) | |
download | yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.gz yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.bz2 yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.lz yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.xz yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.zst yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 7b1bac3f7..8b6b3b68f 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -11,6 +11,7 @@ #include <utility> #include <vector> +#include "common/common_funcs.h" #include "common/common_types.h" #include "core/file_sys/control_metadata.h" #include "core/file_sys/vfs.h" @@ -139,8 +140,11 @@ std::string GetResultStatusString(ResultStatus status); std::ostream& operator<<(std::ostream& os, ResultStatus status); /// Interface for loading an application -class AppLoader : NonCopyable { +class AppLoader { public: + YUZU_NON_COPYABLE(AppLoader); + YUZU_NON_MOVEABLE(AppLoader); + struct LoadParameters { s32 main_thread_priority; u64 main_thread_stack_size; |