diff options
author | bunnei <bunneidev@gmail.com> | 2019-07-07 21:40:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-07 21:40:30 -0400 |
commit | 7b28f954c900536887ce2580d1e654e913580809 (patch) | |
tree | da6e03823d7461f8e02e2deb0fbb8ff521b8e491 /src/core/core.h | |
parent | 8f5aae30746f678eed69d8f311e9b5634a8dd12c (diff) | |
parent | 7e5d7773cc6f6eb7e08dd092bdeef1431c19e6c6 (diff) |
Merge pull request #2651 from DarkLordZach/apm-boost-mode-1
apm: Initial implementation of performance config and boost mode
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; class AppletManager; } // namespace AM::Applets +namespace APM { +class Controller; +} + namespace Glue { class ARPManager; } @@ -296,6 +300,10 @@ public: const Service::Glue::ARPManager& GetARPManager() const; + Service::APM::Controller& GetAPMController(); + + const Service::APM::Controller& GetAPMController() const; + private: System(); |