From e861284318186f8d9cd64a7ddcc28b8d20b98721 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 19 Jan 2007 21:33:27 +0000 Subject: Last big refactoring for 0-9 framing. Still need additional tests & debugging but the overall structure is all in place. * configure.ac: Added -Wno_virtual_overload warning * ChannelTest.cpp, MessageBuilderTest.cpp: Fixed virtual overload warnings. * ChannelAdapter.cpp: Common base for client/broker adapters. Creates invocation context, handles request/resposne IDs. * CppGenerator.java: - Proxies send methods using MethodContext. * Various .h files: removed unnecessary #includes, added to requred .cpp files. * ConnectionContext: renamed from SessionContext. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@497963 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/common/sys/ConnectionInputHandlerFactory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/lib/common/sys/ConnectionInputHandlerFactory.h') diff --git a/cpp/lib/common/sys/ConnectionInputHandlerFactory.h b/cpp/lib/common/sys/ConnectionInputHandlerFactory.h index 5bb5e17704..af7d411928 100644 --- a/cpp/lib/common/sys/ConnectionInputHandlerFactory.h +++ b/cpp/lib/common/sys/ConnectionInputHandlerFactory.h @@ -26,7 +26,7 @@ namespace qpid { namespace sys { -class SessionContext; +class ConnectionOutputHandler; class ConnectionInputHandler; /** @@ -36,7 +36,7 @@ class ConnectionInputHandler; class ConnectionInputHandlerFactory : private boost::noncopyable { public: - virtual ConnectionInputHandler* create(SessionContext* ctxt) = 0; + virtual ConnectionInputHandler* create(ConnectionOutputHandler* ctxt) = 0; virtual ~ConnectionInputHandlerFactory(){} }; -- cgit v1.2.1