summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm/lm.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-26 04:32:42 +0200
committerLioncash <mathew1800@gmail.com>2018-07-26 04:40:16 +0200
commit91d86df9206c1ed8b417077cd65e6e3a9a7e3d19 (patch)
tree6687cec3e0b7120b0640b795ddf39fb60c42c960 /src/core/hle/service/lm/lm.h
parentlm: Amend names of Initialize() in Logger and Initialize() in LM (diff)
downloadyuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.tar
yuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.tar.gz
yuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.tar.bz2
yuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.tar.lz
yuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.tar.xz
yuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.tar.zst
yuzu-91d86df9206c1ed8b417077cd65e6e3a9a7e3d19.zip
Diffstat (limited to 'src/core/hle/service/lm/lm.h')
-rw-r--r--src/core/hle/service/lm/lm.h15
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);