aboutsummaryrefslogtreecommitdiff
path: root/src/core/frontend/applets/profile_select.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-22 20:58:51 -0500
committerZach Hilman <zachhilman@gmail.com>2018-12-03 17:26:26 -0500
commitd17f38494b8d64c16ac718c660a57cd89ab48b6f (patch)
treed735e186b018ed98b7d5e223846d646be0fd9682 /src/core/frontend/applets/profile_select.cpp
parent877b31b33e63c8a9df2649daedfb26a24d2e4515 (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.cpp')
-rw-r--r--src/core/frontend/applets/profile_select.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/frontend/applets/profile_select.cpp b/src/core/frontend/applets/profile_select.cpp
new file mode 100644
index 000000000..fbf5f2a9e
--- /dev/null
+++ b/src/core/frontend/applets/profile_select.cpp
@@ -0,0 +1,19 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/frontend/applets/profile_select.h"
+#include "core/settings.h"
+
+namespace Core::Frontend {
+
+ProfileSelectApplet::~ProfileSelectApplet() = default;
+
+void DefaultProfileSelectApplet::SelectProfile(
+ std::function<void(std::optional<Service::Account::UUID>)> callback) const {
+ Service::Account::ProfileManager manager;
+ callback(manager.GetUser(Settings::values.current_user).value_or(Service::Account::UUID{}));
+ LOG_INFO(Service_ACC, "called, selecting current user instead of prompting...");
+}
+
+} // namespace Core::Frontend