From 9094d2b10ecadd66fa3b22169183e7573cc79629 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 31 Oct 2006 19:53:55 +0000 Subject: IO refactor phase 1. Reduced dependencies, removed redundant classes. Renamed pricipal APR classes in preparation for move to apr namespace. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@469625 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/client/Connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/client/Connection.cpp') diff --git a/cpp/src/qpid/client/Connection.cpp b/cpp/src/qpid/client/Connection.cpp index b20df92e9b..acd4488813 100644 --- a/cpp/src/qpid/client/Connection.cpp +++ b/cpp/src/qpid/client/Connection.cpp @@ -17,7 +17,7 @@ */ #include "qpid/client/Connection.h" #include "qpid/client/Channel.h" -#include "qpid/io/ConnectorImpl.h" +#include "qpid/io/Connector.h" #include "qpid/client/Message.h" #include "qpid/QpidError.h" #include @@ -30,7 +30,7 @@ using namespace qpid::concurrent; u_int16_t Connection::channelIdCounter; Connection::Connection(bool debug, u_int32_t _max_frame_size) : max_frame_size(_max_frame_size), closed(true){ - connector = new ConnectorImpl(debug, _max_frame_size); + connector = new Connector(debug, _max_frame_size); } Connection::~Connection(){ -- cgit v1.2.1