summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/broker/QueueRegistry.h
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-05-11 14:16:52 +0000
committerTed Ross <tross@apache.org>2009-05-11 14:16:52 +0000
commit690e5d617c9aad8550905cf30a8380778c0f9e7a (patch)
tree855a30b9bee8760b083813a6166c8d1e981ad738 /qpid/cpp/src/qpid/broker/QueueRegistry.h
parent44e07189ca7b56b4f051035fddfffc948beeb162 (diff)
downloadqpid-python-690e5d617c9aad8550905cf30a8380778c0f9e7a.tar.gz
QPID-1843 - Cleaned up the interface to the broker's internal management agent.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@773570 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qpid/broker/QueueRegistry.h')
-rw-r--r--qpid/cpp/src/qpid/broker/QueueRegistry.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/QueueRegistry.h b/qpid/cpp/src/qpid/broker/QueueRegistry.h
index 3c02afedc4..a4ea65f18c 100644
--- a/qpid/cpp/src/qpid/broker/QueueRegistry.h
+++ b/qpid/cpp/src/qpid/broker/QueueRegistry.h
@@ -43,7 +43,7 @@ class QueueEvents;
*/
class QueueRegistry {
public:
- QPID_BROKER_EXTERN QueueRegistry();
+ QPID_BROKER_EXTERN QueueRegistry(Broker* b = 0);
QPID_BROKER_EXTERN ~QueueRegistry();
/**
@@ -131,6 +131,7 @@ private:
QueueEvents* events;
management::Manageable* parent;
bool lastNode; //used to set mode on queue declare
+ Broker* broker;
//destroy impl that assumes lock is already held:
void destroyLH (const string& name);