2018-03-02 08:49:35 +00:00
|
|
|
// 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"
|
2020-11-26 20:19:08 +00:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2018-03-02 08:49:35 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Set {
|
2018-03-02 08:49:35 +00:00
|
|
|
|
2020-11-26 20:19:08 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) {
|
|
|
|
std::make_shared<SET>(system)->InstallAsService(service_manager);
|
|
|
|
std::make_shared<SET_CAL>(system)->InstallAsService(service_manager);
|
|
|
|
std::make_shared<SET_FD>(system)->InstallAsService(service_manager);
|
|
|
|
std::make_shared<SET_SYS>(system)->InstallAsService(service_manager);
|
2018-03-02 08:49:35 +00:00
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Set
|