summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sm/srv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/sm/srv.h')
-rw-r--r--src/core/hle/service/sm/srv.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/hle/service/sm/srv.h b/src/core/hle/service/sm/srv.h
new file mode 100644
index 000000000..4196ca1e2
--- /dev/null
+++ b/src/core/hle/service/sm/srv.h
@@ -0,0 +1,25 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <string>
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace SM {
+
+/// Interface to "srv:" service
+class SRV final : public Interface {
+public:
+ SRV();
+ ~SRV() override;
+
+ std::string GetPortName() const override {
+ return "srv:";
+ }
+};
+
+} // namespace SM
+} // namespace Service