summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set_fd.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2024-01-07 00:49:40 +0100
committergerman77 <juangerman-13@hotmail.com>2024-01-07 06:16:03 +0100
commit8e27a485d8d652a87afb64a6b3b7e55ce50550eb (patch)
tree7da1d6179131306c858f1a6fe92a5e8e5a77b168 /src/core/hle/service/set/set_fd.h
parentservice: set: Use official names (diff)
downloadyuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.gz
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.bz2
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.lz
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.xz
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.zst
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.zip
Diffstat (limited to 'src/core/hle/service/set/set_fd.h')
-rw-r--r--src/core/hle/service/set/set_fd.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/core/hle/service/set/set_fd.h b/src/core/hle/service/set/set_fd.h
deleted file mode 100644
index 5dae2263e..000000000
--- a/src/core/hle/service/set/set_fd.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-namespace Core {
-class System;
-}
-
-namespace Service::Set {
-
-class IFirmwareDebugSettingsServer final : public ServiceFramework<IFirmwareDebugSettingsServer> {
-public:
- explicit IFirmwareDebugSettingsServer(Core::System& system_);
- ~IFirmwareDebugSettingsServer() override;
-};
-
-} // namespace Service::Set