summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-25 01:27:35 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-25 01:27:35 +0200
commitd40a38df8d5833397da942a338728da6d07eae84 (patch)
treea67ce1df8413f1c0a422e55f6f5c5a739d918569 /src/core/core.h
parentglue: Implement arp:w and arp:r services (diff)
downloadyuzu-d40a38df8d5833397da942a338728da6d07eae84.tar
yuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.gz
yuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.bz2
yuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.lz
yuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.xz
yuzu-d40a38df8d5833397da942a338728da6d07eae84.tar.zst
yuzu-d40a38df8d5833397da942a338728da6d07eae84.zip
Diffstat (limited to '')
-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;
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();