summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-06-18 20:39:26 +0200
committerSubv <subv2112@gmail.com>2016-12-01 05:04:00 +0100
commitc5e7e0fa26fc793c8b9f3effe25586f7fb57953e (patch)
tree2acac9450de6b1d8cc42d89f9aa08759d77f9cd9 /src/core/hle/kernel/client_session.h
parentKernel/HLE: Service::Interface no longer inherits from any Kernel object, and is now its own standalone class. (diff)
downloadyuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.tar
yuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.tar.gz
yuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.tar.bz2
yuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.tar.lz
yuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.tar.xz
yuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.tar.zst
yuzu-c5e7e0fa26fc793c8b9f3effe25586f7fb57953e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/client_session.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h
index 4fe9b4517..c2fc0d7dd 100644
--- a/src/core/hle/kernel/client_session.h
+++ b/src/core/hle/kernel/client_session.h
@@ -5,11 +5,16 @@
#pragma once
#include <string>
+#include <memory>
#include "common/common_types.h"
#include "core/hle/kernel/kernel.h"
+namespace Service {
+class Interface;
+}
+
namespace Kernel {
class ClientPort;
@@ -41,6 +46,7 @@ public:
std::string name; ///< Name of client port (optional)
SharedPtr<ServerSession> server_session; ///< The server session associated with this client session.
SharedPtr<ClientPort> client_port; ///< The client port which this session is connected to.
+ std::shared_ptr<Service::Interface> hle_helper = nullptr; ///< HLE implementation of this port's request handler
private:
ClientSession();