summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/act_a.h
diff options
context:
space:
mode:
authorAndrás Domonkos <katisx1@citromail.hu>2016-05-18 03:28:25 +0200
committerbunnei <bunneidev@gmail.com>2016-05-18 03:28:25 +0200
commit960297e57742be500dbd73b76b7c960cab7fa6c9 (patch)
treecab4d7967f5b9fd047a21e36a055ee44938b2e95 /src/core/hle/service/act_a.h
parentMerge pull request #1800 from JayFoxRox/set-fpscr (diff)
downloadyuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.tar
yuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.tar.gz
yuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.tar.bz2
yuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.tar.lz
yuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.tar.xz
yuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.tar.zst
yuzu-960297e57742be500dbd73b76b7c960cab7fa6c9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/act_a.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/act_a.h b/src/core/hle/service/act_a.h
new file mode 100644
index 000000000..765cae644
--- /dev/null
+++ b/src/core/hle/service/act_a.h
@@ -0,0 +1,23 @@
+// Copyright 2016 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 ACT_A
+
+namespace ACT_A {
+
+class Interface : public Service::Interface {
+public:
+ Interface();
+
+ std::string GetPortName() const override {
+ return "act:a";
+ }
+};
+
+} // namespace