summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/profile_select.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-03-29 15:11:34 +0200
committerGitHub <noreply@github.com>2023-03-29 15:11:34 +0200
commit8bdc51b620f0778f53d76ad9368da97a9213d631 (patch)
tree2a71c944643cda0ab019c22d1d46d58552f002ff /src/core/frontend/applets/profile_select.h
parentMerge pull request #10003 from german77/disconnect (diff)
parentqt: implement RequestExit for applets (diff)
downloadyuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.gz
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.bz2
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.lz
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.xz
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.zst
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.zip
Diffstat (limited to '')
-rw-r--r--src/core/frontend/applets/profile_select.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/frontend/applets/profile_select.h b/src/core/frontend/applets/profile_select.h
index 138429533..76e963535 100644
--- a/src/core/frontend/applets/profile_select.h
+++ b/src/core/frontend/applets/profile_select.h
@@ -7,9 +7,11 @@
#include <optional>
#include "common/uuid.h"
+#include "core/frontend/applets/applet.h"
+
namespace Core::Frontend {
-class ProfileSelectApplet {
+class ProfileSelectApplet : public Applet {
public:
using SelectProfileCallback = std::function<void(std::optional<Common::UUID>)>;
@@ -20,6 +22,7 @@ public:
class DefaultProfileSelectApplet final : public ProfileSelectApplet {
public:
+ void Close() const override;
void SelectProfile(SelectProfileCallback callback) const override;
};