summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/IOHandle.h
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-30 23:18:07 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-30 23:18:07 +0000
commit18af9009d719ce758678185ae0a57967da5ca6fe (patch)
treea291bdc0dc2e139249ddad5c0bb883fe8dde426a /cpp/src/qpid/sys/IOHandle.h
parent5d74de00280c14e33964b099d6658a147479b4ca (diff)
downloadqpid-python-18af9009d719ce758678185ae0a57967da5ca6fe.tar.gz
Resolve Time diffs for Windows; add Windows version of asynch I/O layer. Resolves QPID-1209
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@709285 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/IOHandle.h')
-rw-r--r--cpp/src/qpid/sys/IOHandle.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/IOHandle.h b/cpp/src/qpid/sys/IOHandle.h
index d06512da58..0bf2abbafa 100644
--- a/cpp/src/qpid/sys/IOHandle.h
+++ b/cpp/src/qpid/sys/IOHandle.h
@@ -26,11 +26,25 @@ namespace qpid {
namespace sys {
/**
- * This is a class intended to abstract the Unix concept of file descriptor or the Windows concept of HANDLE
+ * This is a class intended to abstract the Unix concept of file descriptor
+ * or the Windows concept of HANDLE
*/
+// Windows-related classes
+class AsynchAcceptorPrivate;
+class AsynchAcceptResult;
+namespace windows {
+ class AsynchIO;
+}
+
+// General classes
class PollerHandle;
class IOHandlePrivate;
class IOHandle {
+
+ friend class AsynchAcceptorPrivate;
+ friend class AsynchAcceptResult;
+ friend class windows::AsynchIO;
+
friend class PollerHandle;
protected: