diff options
| author | 2018-12-24 16:22:07 -0500 | |
|---|---|---|
| committer | 2018-12-28 15:32:39 -0500 | |
| commit | 32bfa92c7137d20f2c105595831b3c8cefe40326 (patch) | |
| tree | 58915a61c31a5e2c967d866c1fc6099e21a042da /src/core/core.h | |
| parent | frontend: Add frontend responder for web browser (diff) | |
| download | yuzu-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.h | 7 |
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 | ||
| 16 | namespace Core::Frontend { | 15 | namespace Core::Frontend { |
| 17 | class EmuWindow; | 16 | class EmuWindow; |
| 17 | class ProfileSelectApplet; | ||
| 18 | class SoftwareKeyboardApplet; | 18 | class SoftwareKeyboardApplet; |
| 19 | class WebBrowserApplet; | ||
| 19 | } // namespace Core::Frontend | 20 | } // namespace Core::Frontend |
| 20 | 21 | ||
| 21 | namespace FileSys { | 22 | namespace 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 | |||
| 253 | private: | 258 | private: |
| 254 | System(); | 259 | System(); |
| 255 | 260 | ||