summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/news_u.h
diff options
context:
space:
mode:
authorpurpasmart96 <kanzoconfigz@hotmail.com>2014-12-21 20:52:10 +0100
committerpurpasmart96 <kanzoconfigz@hotmail.com>2014-12-26 04:08:33 +0100
commit9796bc1fa2518ca4780ce63a543444ce5f8a28e4 (patch)
tree3f92a6046e9c44b120297095d90fc8eb970ccd54 /src/core/hle/service/news_u.h
parentMerge pull request #332 from lioncash/sel (diff)
downloadyuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.tar
yuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.tar.gz
yuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.tar.bz2
yuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.tar.lz
yuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.tar.xz
yuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.tar.zst
yuzu-9796bc1fa2518ca4780ce63a543444ce5f8a28e4.zip
Diffstat (limited to 'src/core/hle/service/news_u.h')
-rw-r--r--src/core/hle/service/news_u.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/news_u.h b/src/core/hle/service/news_u.h
new file mode 100644
index 000000000..0473cd19c
--- /dev/null
+++ b/src/core/hle/service/news_u.h
@@ -0,0 +1,23 @@
+// Copyright 2014 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 NEWS_U
+
+namespace NEWS_U {
+
+class Interface : public Service::Interface {
+public:
+ Interface();
+
+ std::string GetPortName() const override {
+ return "news:u";
+ }
+};
+
+} // namespace