summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-06-29 17:17:35 -0400
committerGravatar Zach Hilman2019-09-22 12:34:55 -0400
commit4153bd8d171ffe7cd11c467b338f843859565d51 (patch)
tree024f3a856b4aab1398f836c243382a3962f6e666 /src/core/core.h
parentreporter: Add log output for packaged lm log data (diff)
downloadyuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.gz
yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.xz
yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.zip
core: Add LM::Manager to system
Allows centralized control over logging mechanisms.
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 ff10ebe12..0170e0b05 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -58,6 +58,10 @@ namespace Glue {
58class ARPManager; 58class ARPManager;
59} 59}
60 60
61namespace LM {
62class Manager;
63} // namespace LM
64
61namespace SM { 65namespace SM {
62class ServiceManager; 66class ServiceManager;
63} // namespace SM 67} // namespace SM
@@ -326,6 +330,10 @@ public:
326 330
327 const Service::APM::Controller& GetAPMController() const; 331 const Service::APM::Controller& GetAPMController() const;
328 332
333 Service::LM::Manager& GetLogManager();
334
335 const Service::LM::Manager& GetLogManager() const;
336
329 void SetExitLock(bool locked); 337 void SetExitLock(bool locked);
330 338
331 bool GetExitLock() const; 339 bool GetExitLock() const;