summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-12-24 16:22:07 -0500
committerGravatar Zach Hilman2018-12-28 15:32:39 -0500
commit32bfa92c7137d20f2c105595831b3c8cefe40326 (patch)
tree58915a61c31a5e2c967d866c1fc6099e21a042da /src/core/core.h
parentfrontend: Add frontend responder for web browser (diff)
downloadyuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.gz
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.xz
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.zip
core: Add getter and setter for WebBrowserApplet frontend
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 869921493..a53dbb4d4 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -11,11 +11,12 @@
11#include "common/common_types.h" 11#include "common/common_types.h"
12#include "core/file_sys/vfs_types.h" 12#include "core/file_sys/vfs_types.h"
13#include "core/hle/kernel/object.h" 13#include "core/hle/kernel/object.h"
14#include "frontend/applets/profile_select.h"
15 14
16namespace Core::Frontend { 15namespace Core::Frontend {
17class EmuWindow; 16class EmuWindow;
17class ProfileSelectApplet;
18class SoftwareKeyboardApplet; 18class SoftwareKeyboardApplet;
19class WebBrowserApplet;
19} // namespace Core::Frontend 20} // namespace Core::Frontend
20 21
21namespace FileSys { 22namespace FileSys {
@@ -250,6 +251,10 @@ public:
250 251
251 const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const; 252 const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const;
252 253
254 void SetWebBrowser(std::unique_ptr<Core::Frontend::WebBrowserApplet> applet);
255
256 const Core::Frontend::WebBrowserApplet& GetWebBrowser() const;
257
253private: 258private:
254 System(); 259 System();
255 260