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.
This commit is contained in:
Lioncash
2018-07-25 22:32:42 -04:00
parent 6f4d3d8163
commit 91d86df920
2 changed files with 31 additions and 37 deletions

View File

@ -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);