diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2018-11-22 20:58:51 -0500 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-03 17:26:26 -0500 |
| commit | d17f38494b8d64c16ac718c660a57cd89ab48b6f (patch) | |
| tree | d735e186b018ed98b7d5e223846d646be0fd9682 /src/core/frontend/applets/profile_select.h | |
| parent | 877b31b33e63c8a9df2649daedfb26a24d2e4515 (diff) | |
frontend: Add frontend applet for ProfileSelect
Responsible for selecting a profile and firing callback upon completion.
Diffstat (limited to 'src/core/frontend/applets/profile_select.h')
| -rw-r--r-- | src/core/frontend/applets/profile_select.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/frontend/applets/profile_select.h b/src/core/frontend/applets/profile_select.h new file mode 100644 index 000000000..fc8f7ae94 --- /dev/null +++ b/src/core/frontend/applets/profile_select.h @@ -0,0 +1,27 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include <functional> +#include <optional> +#include "core/hle/service/acc/profile_manager.h" + +namespace Core::Frontend { + +class ProfileSelectApplet { +public: + virtual ~ProfileSelectApplet(); + + virtual void SelectProfile( + std::function<void(std::optional<Service::Account::UUID>)> callback) const = 0; +}; + +class DefaultProfileSelectApplet final : public ProfileSelectApplet { +public: + void SelectProfile( + std::function<void(std::optional<Service::Account::UUID>)> callback) const override; +}; + +} // namespace Core::Frontend |
