From 91d86df9206c1ed8b417077cd65e6e3a9a7e3d19 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 25 Jul 2018 22:32:42 -0400 Subject: 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. --- src/core/hle/service/lm/lm.h | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'src/core/hle/service/lm/lm.h') 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 -#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 { -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); -- cgit v1.2.3