summaryrefslogtreecommitdiff
path: root/cpp/lib/broker/BrokerQueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/lib/broker/BrokerQueue.h')
-rw-r--r--cpp/lib/broker/BrokerQueue.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/lib/broker/BrokerQueue.h b/cpp/lib/broker/BrokerQueue.h
index 12f5815027..45cf317037 100644
--- a/cpp/lib/broker/BrokerQueue.h
+++ b/cpp/lib/broker/BrokerQueue.h
@@ -26,7 +26,6 @@
#include <queue>
#include <boost/shared_ptr.hpp>
#include <amqp_types.h>
-#include <Binding.h>
#include <ConnectionToken.h>
#include <Consumer.h>
#include <BrokerMessage.h>
@@ -54,7 +53,6 @@ namespace qpid {
*/
class Queue{
typedef std::vector<Consumer*> Consumers;
- typedef std::queue<Binding*> Bindings;
typedef std::queue<Message::shared_ptr> Messages;
const string name;
@@ -62,7 +60,6 @@ namespace qpid {
MessageStore* const store;
const ConnectionToken* const owner;
Consumers consumers;
- Bindings bindings;
Messages messages;
bool queueing;
bool dispatching;
@@ -94,11 +91,6 @@ namespace qpid {
void configure(const qpid::framing::FieldTable& settings);
void destroy();
/**
- * Informs the queue of a binding that should be cancelled on
- * destruction of the queue.
- */
- void bound(Binding* b);
- /**
* Delivers a message to the queue. Will record it as
* enqueued if persistent then process it.
*/