summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/hid/hid_debug_server.h
blob: 406db2211acc51457cf20f83138b6c91b993d745 (plain) (tree)

























                                                                                               
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "core/hle/service/service.h"

namespace Core {
class System;
}

namespace Service::HID {
class ResourceManager;

class IHidDebugServer final : public ServiceFramework<IHidDebugServer> {
public:
    explicit IHidDebugServer(Core::System& system_, std::shared_ptr<ResourceManager> resource);
    ~IHidDebugServer() override;

private:
    std::shared_ptr<ResourceManager> GetResourceManager();

    std::shared_ptr<ResourceManager> resource_manager;
};

} // namespace Service::HID