diff options
| author | 2019-06-24 19:27:35 -0400 | |
|---|---|---|
| committer | 2019-06-24 19:27:35 -0400 | |
| commit | d40a38df8d5833397da942a338728da6d07eae84 (patch) | |
| tree | a67ce1df8413f1c0a422e55f6f5c5a739d918569 /src/core/core.h | |
| parent | glue: Implement arp:w and arp:r services (diff) | |
| download | yuzu-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.h | 8 |
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; | |||
| 43 | class AppletManager; | 43 | class AppletManager; |
| 44 | } // namespace AM::Applets | 44 | } // namespace AM::Applets |
| 45 | 45 | ||
| 46 | namespace Glue { | ||
| 47 | class ARPManager; | ||
| 48 | } | ||
| 49 | |||
| 46 | namespace SM { | 50 | namespace SM { |
| 47 | class ServiceManager; | 51 | class 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 | |||
| 291 | private: | 299 | private: |
| 292 | System(); | 300 | System(); |
| 293 | 301 | ||