summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/Connection.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2010-04-08 04:53:26 +0000
committerAndrew Stitcher <astitcher@apache.org>2010-04-08 04:53:26 +0000
commitb799ad84fe13f0573a3423b2097c8931859d16eb (patch)
tree4b6b9ac5a2e929a93b7fc9695e9d6b3bfd7a52f9 /cpp/src/qpid/client/Connection.cpp
parent6d1532b40eae7ca08a44d8b5cdee22663c939be5 (diff)
downloadqpid-python-b799ad84fe13f0573a3423b2097c8931859d16eb.tar.gz
Improved fix for to create client library Poller. Improved because it
is now created at first need rather than library load. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@931781 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Connection.cpp')
-rw-r--r--cpp/src/qpid/client/Connection.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Connection.cpp b/cpp/src/qpid/client/Connection.cpp
index 32a01b2c40..d8ffb6d9e1 100644
--- a/cpp/src/qpid/client/Connection.cpp
+++ b/cpp/src/qpid/client/Connection.cpp
@@ -45,7 +45,10 @@ using namespace qpid::sys;
namespace qpid {
namespace client {
-Connection::Connection() : version(framing::highestProtocolVersion) {}
+Connection::Connection() : version(framing::highestProtocolVersion)
+{
+ ConnectionImpl::init();
+}
Connection::~Connection() {}