mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-28 02:50:04 +00:00
46da908a00
There were a few places where nested namespace specifiers weren't being used where they could be within the service code. This amends that to make the namespacing a tiny bit more compact.
19 lines
624 B
C++
19 lines
624 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/service/dlp/dlp.h"
|
|
#include "core/hle/service/dlp/dlp_clnt.h"
|
|
#include "core/hle/service/dlp/dlp_fkcl.h"
|
|
#include "core/hle/service/dlp/dlp_srvr.h"
|
|
|
|
namespace Service::DLP {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
std::make_shared<DLP_CLNT>()->InstallAsService(service_manager);
|
|
std::make_shared<DLP_FKCL>()->InstallAsService(service_manager);
|
|
std::make_shared<DLP_SRVR>()->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::DLP
|