mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 22:12:46 +01:00
ccca5e7c28
Tidies up namespace declarations
20 lines
719 B
C++
20 lines
719 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/service/set/set.h"
|
|
#include "core/hle/service/set/set_cal.h"
|
|
#include "core/hle/service/set/set_fd.h"
|
|
#include "core/hle/service/set/set_sys.h"
|
|
#include "core/hle/service/set/settings.h"
|
|
|
|
namespace Service::Set {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
std::make_shared<SET>()->InstallAsService(service_manager);
|
|
std::make_shared<SET_CAL>()->InstallAsService(service_manager);
|
|
std::make_shared<SET_FD>()->InstallAsService(service_manager);
|
|
std::make_shared<SET_SYS>()->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::Set
|