summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/server_port.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-05-22 19:30:13 +0200
committerSubv <subv2112@gmail.com>2016-06-11 15:37:37 +0200
commit7b445ddff0be3e0210cb217c74cb34a16799ce0d (patch)
treef752a9eda53997e2268e5a5cbc534e6562c3553d /src/core/hle/kernel/server_port.h
parentKernel: Added ClientPort and ServerPort classes. (diff)
downloadyuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.tar
yuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.tar.gz
yuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.tar.bz2
yuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.tar.lz
yuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.tar.xz
yuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.tar.zst
yuzu-7b445ddff0be3e0210cb217c74cb34a16799ce0d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/server_port.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/kernel/server_port.h b/src/core/hle/kernel/server_port.h
index e41ef8ce4..e9c972ce6 100644
--- a/src/core/hle/kernel/server_port.h
+++ b/src/core/hle/kernel/server_port.h
@@ -5,6 +5,7 @@
#pragma once
#include <string>
+#include <tuple>
#include "common/common_types.h"
@@ -12,10 +13,12 @@
namespace Kernel {
+class ClientPort;
+
class ServerPort final : public WaitObject {
public:
/**
- * Creates a pair of a ServerPort and an associated ClientPort.
+ * Creates a pair of ServerPort and an associated ClientPort.
* @param max_sessions Maximum number of sessions to the port
* @param name Optional name of the ports
* @return The created port tuple