diff options
| author | 2019-06-29 17:17:35 -0400 | |
|---|---|---|
| committer | 2019-09-22 12:34:55 -0400 | |
| commit | 4153bd8d171ffe7cd11c467b338f843859565d51 (patch) | |
| tree | 024f3a856b4aab1398f836c243382a3962f6e666 /src/core/core.h | |
| parent | reporter: Add log output for packaged lm log data (diff) | |
| download | yuzu-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.h | 8 |
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 { | |||
| 58 | class ARPManager; | 58 | class ARPManager; |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | namespace LM { | ||
| 62 | class Manager; | ||
| 63 | } // namespace LM | ||
| 64 | |||
| 61 | namespace SM { | 65 | namespace SM { |
| 62 | class ServiceManager; | 66 | class 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; |