core: Keep instance of APM Controller

This commit is contained in:
Zach Hilman 2019-06-28 22:46:31 -04:00
parent e52306ca60
commit e2ad3e1fb0
2 changed files with 20 additions and 0 deletions

View file

@ -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();