summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set_fd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/set/set_fd.h')
-rw-r--r--src/core/hle/service/set/set_fd.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/hle/service/set/set_fd.h b/src/core/hle/service/set/set_fd.h
new file mode 100644
index 000000000..65b36bcb3
--- /dev/null
+++ b/src/core/hle/service/set/set_fd.h
@@ -0,0 +1,19 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace Set {
+
+class SET_FD final : public ServiceFramework<SET_FD> {
+public:
+ explicit SET_FD();
+ ~SET_FD() = default;
+};
+
+} // namespace Set
+} // namespace Service