core: Add LM::Manager to system

Allows centralized control over logging mechanisms.
This commit is contained in:
Zach Hilman
2019-06-29 17:17:35 -04:00
parent 82bf055eca
commit 4153bd8d17
6 changed files with 39 additions and 19 deletions

View File

@ -4,13 +4,13 @@
#pragma once
namespace Service::SM {
class ServiceManager;
namespace Core {
class System;
}
namespace Service::LM {
/// Registers all LM services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);
void InstallInterfaces(Core::System& system);
} // namespace Service::LM