summaryrefslogtreecommitdiff
path: root/cpp/include/qpid/sys/IOHandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/qpid/sys/IOHandle.h')
-rw-r--r--cpp/include/qpid/sys/IOHandle.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/include/qpid/sys/IOHandle.h b/cpp/include/qpid/sys/IOHandle.h
index 283e021162..68e9d92a04 100644
--- a/cpp/include/qpid/sys/IOHandle.h
+++ b/cpp/include/qpid/sys/IOHandle.h
@@ -35,6 +35,8 @@ namespace sys {
class AsynchAcceptorPrivate;
class AsynchAcceptResult;
namespace windows {
+ class AsynchAcceptor;
+ class AsynchAcceptResult;
class AsynchIO;
}
@@ -43,8 +45,8 @@ class PollerHandle;
class IOHandlePrivate;
class IOHandle {
- friend class AsynchAcceptorPrivate;
- friend class AsynchAcceptResult;
+ friend class windows::AsynchAcceptResult;
+ friend class windows::AsynchAcceptor;
friend class windows::AsynchIO;
friend class PollerHandle;
@@ -52,7 +54,7 @@ class IOHandle {
protected:
IOHandlePrivate* const impl;
- IOHandle(IOHandlePrivate*);
+ IOHandle(IOHandlePrivate*);
QPID_COMMON_EXTERN virtual ~IOHandle();
};