summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid_spvr.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-05 03:27:24 +0100
committerbunnei <bunneidev@gmail.com>2015-03-05 03:27:24 +0100
commit8e4e28aacb38b4f80c3ae80167841f4e451f6ef5 (patch)
treecd4efbdfb0e01e9e2b424f17339f11873c90485c /src/core/hle/service/hid/hid_spvr.h
parentMerge pull request #625 from lioncash/warn (diff)
parentServices: Moved the PTM and APT services to their own folder (diff)
downloadyuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.gz
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.bz2
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.lz
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.xz
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.zst
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.zip
Diffstat (limited to 'src/core/hle/service/hid/hid_spvr.h')
-rw-r--r--src/core/hle/service/hid/hid_spvr.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/core/hle/service/hid/hid_spvr.h b/src/core/hle/service/hid/hid_spvr.h
index 53ddc8569..ba61583d2 100644
--- a/src/core/hle/service/hid/hid_spvr.h
+++ b/src/core/hle/service/hid/hid_spvr.h
@@ -6,18 +6,17 @@
#include "core/hle/service/service.h"
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace HID_SPVR
+namespace Service {
+namespace HID {
-namespace HID_SPVR {
-
-class Interface : public Service::Interface {
+class HID_SPVR_Interface : public Service::Interface {
public:
- Interface();
+ HID_SPVR_Interface();
std::string GetPortName() const override {
return "hid:SPVR";
}
};
-} // namespace
+} // namespace HID
+} // namespace Service \ No newline at end of file