// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "core/hle/service/cmif_types.h" #include "core/hle/service/service.h" namespace Core { class System; } namespace Service::VI { class Container; class IApplicationDisplayService; enum class Policy : u32; class ISystemRootService final : public ServiceFramework { public: explicit ISystemRootService(Core::System& system_, std::shared_ptr container); ~ISystemRootService() override; private: Result GetDisplayService( Out> out_application_display_service, Policy policy); const std::shared_ptr m_container; }; } // namespace Service::VI