summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-12-24 22:22:07 +0100
committerZach Hilman <zachhilman@gmail.com>2018-12-28 21:32:39 +0100
commit32bfa92c7137d20f2c105595831b3c8cefe40326 (patch)
tree58915a61c31a5e2c967d866c1fc6099e21a042da /src/core/core.h
parentfrontend: Add frontend responder for web browser (diff)
downloadyuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.gz
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.bz2
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.lz
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.xz
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.tar.zst
yuzu-32bfa92c7137d20f2c105595831b3c8cefe40326.zip
Diffstat (limited to '')
-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 @@
#include "common/common_types.h"
#include "core/file_sys/vfs_types.h"
#include "core/hle/kernel/object.h"
-#include "frontend/applets/profile_select.h"
namespace Core::Frontend {
class EmuWindow;
+class ProfileSelectApplet;
class SoftwareKeyboardApplet;
+class WebBrowserApplet;
} // namespace Core::Frontend
namespace FileSys {
@@ -250,6 +251,10 @@ public:
const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const;
+ void SetWebBrowser(std::unique_ptr<Core::Frontend::WebBrowserApplet> applet);
+
+ const Core::Frontend::WebBrowserApplet& GetWebBrowser() const;
+
private:
System();