summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_sysm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/ptm/ptm_sysm.h')
-rw-r--r--src/core/hle/service/ptm/ptm_sysm.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/core/hle/service/ptm/ptm_sysm.h b/src/core/hle/service/ptm/ptm_sysm.h
deleted file mode 100644
index 8afcebbba..000000000
--- a/src/core/hle/service/ptm/ptm_sysm.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2015 Citra Emulator Project
-// 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 PTM {
-
-class PTM_S final : public Interface {
-public:
- PTM_S();
-
- std::string GetPortName() const override {
- return "ptm:s";
- }
-};
-
-class PTM_Sysm final : public Interface {
-public:
- PTM_Sysm();
-
- std::string GetPortName() const override {
- return "ptm:sysm";
- }
-};
-
-} // namespace PTM
-} // namespace Service