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
commit4e485d80018badb68d18cfb20886dd97f18ae7b1 (patch)
tree4b6b9ac5a2e929a93b7fc9695e9d6b3bfd7a52f9 /cpp/src/qpid/client/Connection.cpp
parent91bbbc3dcc995e5955f780948be42cde721528ba (diff)
downloadqpid-python-4e485d80018badb68d18cfb20886dd97f18ae7b1.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() {}