diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2008-07-09 20:36:17 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2008-07-09 20:36:17 +0000 |
| commit | 2212c5a5b56466491986220ddd6a3aa4e81ff4e4 (patch) | |
| tree | b1104abc063d7cf0d869ce7be74e5e84474d2c88 /cpp/src/qpid/sys/AsynchIOHandler.h | |
| parent | 9575428feb2a81323f0426361830bc543eba29db (diff) | |
| download | qpid-python-2212c5a5b56466491986220ddd6a3aa4e81ff4e4.tar.gz | |
Some small changes which clean up header file inclusions
and generally start to tidy up the network layer so that it's
a bit easier to implement new network transports
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@675338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/AsynchIOHandler.h')
| -rw-r--r-- | cpp/src/qpid/sys/AsynchIOHandler.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/AsynchIOHandler.h b/cpp/src/qpid/sys/AsynchIOHandler.h index 7448094a94..26e2cf4c5c 100644 --- a/cpp/src/qpid/sys/AsynchIOHandler.h +++ b/cpp/src/qpid/sys/AsynchIOHandler.h @@ -23,7 +23,6 @@ #include "OutputControl.h" #include "ConnectionCodec.h" -#include "AsynchIO.h" namespace qpid { @@ -32,6 +31,11 @@ namespace framing { } namespace sys { + +class AsynchIO; +class AsynchIOBufferBase; +class Socket; + class AsynchIOHandler : public OutputControl { std::string identifier; AsynchIO* aio; @@ -54,7 +58,7 @@ class AsynchIOHandler : public OutputControl { void activateOutput(); // Input side - void readbuff(AsynchIO& aio, AsynchIO::BufferBase* buff); + void readbuff(AsynchIO& aio, AsynchIOBufferBase* buff); void eof(AsynchIO& aio); void disconnect(AsynchIO& aio); |
