mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-25 11:06:57 +01: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.
21 lines
714 B
C++
21 lines
714 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/qtm/qtm.h"
|
|
#include "core/hle/service/qtm/qtm_c.h"
|
|
#include "core/hle/service/qtm/qtm_s.h"
|
|
#include "core/hle/service/qtm/qtm_sp.h"
|
|
#include "core/hle/service/qtm/qtm_u.h"
|
|
|
|
namespace Service::QTM {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
std::make_shared<QTM_C>()->InstallAsService(service_manager);
|
|
std::make_shared<QTM_S>()->InstallAsService(service_manager);
|
|
std::make_shared<QTM_SP>()->InstallAsService(service_manager);
|
|
std::make_shared<QTM_U>()->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::QTM
|