summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-06-28 22:46:31 -0400
committerGravatar Zach Hilman2019-06-28 22:46:31 -0400
commite2ad3e1fb0771a5280601dbcb9bafe9ebe323492 (patch)
tree871565865a018bbc32b22d7ec71203604eb6a5ca /src/core/core.h
parentapm: Implement SetCpuBoostMode (diff)
downloadyuzu-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.h8
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;
43class AppletManager; 43class AppletManager;
44} // namespace AM::Applets 44} // namespace AM::Applets
45 45
46namespace APM {
47class Controller;
48}
49
46namespace Glue { 50namespace Glue {
47class ARPManager; 51class 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
299private: 307private:
300 System(); 308 System();
301 309