diff options
| author | 2019-06-28 22:46:31 -0400 | |
|---|---|---|
| committer | 2019-06-28 22:46:31 -0400 | |
| commit | e2ad3e1fb0771a5280601dbcb9bafe9ebe323492 (patch) | |
| tree | 871565865a018bbc32b22d7ec71203604eb6a5ca /src/core/core.h | |
| parent | apm: Implement SetCpuBoostMode (diff) | |
| download | yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.gz yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.xz yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.zip | |
core: Keep instance of APM Controller
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index 70adb7af9..11e73278e 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -43,6 +43,10 @@ struct AppletFrontendSet; | |||
| 43 | class AppletManager; | 43 | class AppletManager; |
| 44 | } // namespace AM::Applets | 44 | } // namespace AM::Applets |
| 45 | 45 | ||
| 46 | namespace APM { | ||
| 47 | class Controller; | ||
| 48 | } | ||
| 49 | |||
| 46 | namespace Glue { | 50 | namespace Glue { |
| 47 | class ARPManager; | 51 | class ARPManager; |
| 48 | } | 52 | } |
| @@ -296,6 +300,10 @@ public: | |||
| 296 | 300 | ||
| 297 | const Service::Glue::ARPManager& GetARPManager() const; | 301 | const Service::Glue::ARPManager& GetARPManager() const; |
| 298 | 302 | ||
| 303 | Service::APM::Controller& GetAPMController(); | ||
| 304 | |||
| 305 | const Service::APM::Controller& GetAPMController() const; | ||
| 306 | |||
| 299 | private: | 307 | private: |
| 300 | System(); | 308 | System(); |
| 301 | 309 | ||