diff options
author | Andrew Stitcher <astitcher@apache.org> | 2010-04-08 04:53:26 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2010-04-08 04:53:26 +0000 |
commit | b799ad84fe13f0573a3423b2097c8931859d16eb (patch) | |
tree | 4b6b9ac5a2e929a93b7fc9695e9d6b3bfd7a52f9 /cpp/src/qpid/client/Connection.cpp | |
parent | 6d1532b40eae7ca08a44d8b5cdee22663c939be5 (diff) | |
download | qpid-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.cpp | 5 |
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() {} |