diff options
author | Kim van der Riet <kpvdr@apache.org> | 2012-06-08 18:44:40 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2012-06-08 18:44:40 +0000 |
commit | 4ca527d39453bcd49374c23ec01a4eacf615b650 (patch) | |
tree | a08f4ee3848aebe405ec05fbb6b1c696b136b5b1 /cpp/src/qpid/asyncStore/OperationQueue.cpp | |
parent | 56094d9861141097e107a71dac4c808e0aca9c5f (diff) | |
download | qpid-python-4ca527d39453bcd49374c23ec01a4eacf615b650.tar.gz |
QPID-3858: WIP - tidy-up: protected to private in classes except where required
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1348186 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/asyncStore/OperationQueue.cpp')
-rw-r--r-- | cpp/src/qpid/asyncStore/OperationQueue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/asyncStore/OperationQueue.cpp b/cpp/src/qpid/asyncStore/OperationQueue.cpp index a455e445ab..4eabf82004 100644 --- a/cpp/src/qpid/asyncStore/OperationQueue.cpp +++ b/cpp/src/qpid/asyncStore/OperationQueue.cpp @@ -46,13 +46,13 @@ OperationQueue::submit(boost::shared_ptr<const AsyncOperation> op) m_opQueue.push(op); } -// protected +// private OperationQueue::OpQueue::Batch::const_iterator OperationQueue::handle(const OperationQueue::OpQueue::Batch& e) { for (OpQueue::Batch::const_iterator i = e.begin(); i != e.end(); ++i) { //std::cout << "<-- OperationQueue::handle() Op=" << (*i)->getOpStr() << std::endl << std::flush; - boost::shared_ptr<qpid::broker::BrokerAsyncContext> bc = (*i)->m_brokerCtxt; + boost::shared_ptr<qpid::broker::BrokerAsyncContext> bc = (*i)->getBrokerContext(); if (bc) { qpid::broker::AsyncResultQueue* const arq = bc->getAsyncResultQueue(); if (arq) { |