core: Keep track of ARPManager and register current application on boot

This commit is contained in:
Zach Hilman 2019-06-24 19:27:35 -04:00
parent ce21973022
commit d40a38df8d
2 changed files with 76 additions and 0 deletions

View file

@ -43,6 +43,10 @@ struct AppletFrontendSet;
class AppletManager;
} // namespace AM::Applets
namespace Glue {
class ARPManager;
}
namespace SM {
class ServiceManager;
} // namespace SM
@ -288,6 +292,10 @@ public:
const Reporter& GetReporter() const;
Service::Glue::ARPManager& GetARPManager();
const Service::Glue::ARPManager& GetARPManager() const;
private:
System();