diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-25 22:32:42 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-25 22:40:16 -0400 |
| commit | 91d86df9206c1ed8b417077cd65e6e3a9a7e3d19 (patch) | |
| tree | 6687cec3e0b7120b0640b795ddf39fb60c42c960 /src/core/hle/service/lm/lm.h | |
| parent | 6f4d3d8163621f4d21d4d31b21d89073c0124d65 (diff) | |
lm: Move LM's class declaration into the cpp file
This isn't used directly outside of this translation unit, so we can
hide it from external use.
Diffstat (limited to 'src/core/hle/service/lm/lm.h')
| -rw-r--r-- | src/core/hle/service/lm/lm.h | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/core/hle/service/lm/lm.h b/src/core/hle/service/lm/lm.h index 9c15c2e5f..7806ae27b 100644 --- a/src/core/hle/service/lm/lm.h +++ b/src/core/hle/service/lm/lm.h @@ -4,21 +4,12 @@ #pragma once -#include <vector> -#include "core/hle/kernel/kernel.h" -#include "core/hle/service/service.h" +namespace Service::SM { +class ServiceManager; +} namespace Service::LM { -class LM final : public ServiceFramework<LM> { -public: - LM(); - ~LM() = default; - -private: - void OpenLogger(Kernel::HLERequestContext& ctx); -}; - /// Registers all LM services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager); |
