yuzu-mainline/src/core/hle/service/set/settings.h

21 lines
433 B
C++
Raw Normal View History

2018-03-02 09:49:35 +01:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
namespace Core {
class System;
}
namespace Service::SM {
class ServiceManager;
}
2018-03-02 09:49:35 +01:00
namespace Service::Set {
2018-03-02 09:49:35 +01:00
/// Registers all Settings services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
2018-03-02 09:49:35 +01:00
} // namespace Service::Set