summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns_s.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-08-29 03:26:07 +0200
committerSubv <subv2112@gmail.com>2017-09-16 17:52:45 +0200
commit3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8 (patch)
tree85744d876a96f9aa8df07c57259db0ff206760a7 /src/core/hle/service/ns/ns_s.h
parentMerge pull request #2901 from stone3311/master (diff)
downloadyuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.tar
yuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.tar.gz
yuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.tar.bz2
yuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.tar.lz
yuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.tar.xz
yuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.tar.zst
yuzu-3d86e3afc4b03037fb1ac8c0b637312a5d0e17f8.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/ns_s.h (renamed from src/core/hle/service/ns_s.h)9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/hle/service/ns_s.h b/src/core/hle/service/ns/ns_s.h
index 90288a521..660ae453f 100644
--- a/src/core/hle/service/ns_s.h
+++ b/src/core/hle/service/ns/ns_s.h
@@ -4,18 +4,17 @@
#pragma once
+#include "core/hle/kernel/kernel.h"
#include "core/hle/service/service.h"
namespace Service {
namespace NS {
-class NS_S final : public Interface {
+/// Interface to "ns:s" service
+class NS_S final : public ServiceFramework<NS_S> {
public:
NS_S();
-
- std::string GetPortName() const override {
- return "ns:s";
- }
+ ~NS_S();
};
} // namespace NS