summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-06-24 19:27:35 -0400
committerGravatar Zach Hilman2019-06-24 19:27:35 -0400
commitd40a38df8d5833397da942a338728da6d07eae84 (patch)
treea67ce1df8413f1c0a422e55f6f5c5a739d918569 /src/core/core.h
parentglue: Implement arp:w and arp:r services (diff)
downloadyuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.gz
yuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.xz
yuzu-d40a38df8d5833397da942a338728da6d07eae84.zip
core: Keep track of ARPManager and register current application on boot
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 226ef4630..70adb7af9 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 Glue {
47class ARPManager;
48}
49
46namespace SM { 50namespace SM {
47class ServiceManager; 51class ServiceManager;
48} // namespace SM 52} // namespace SM
@@ -288,6 +292,10 @@ public:
288 292
289 const Reporter& GetReporter() const; 293 const Reporter& GetReporter() const;
290 294
295 Service::Glue::ARPManager& GetARPManager();
296
297 const Service::Glue::ARPManager& GetARPManager() const;
298
291private: 299private:
292 System(); 300 System();
293 301