summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/TopicExchange.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/broker/TopicExchange.h')
-rw-r--r--cpp/src/qpid/broker/TopicExchange.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/broker/TopicExchange.h b/cpp/src/qpid/broker/TopicExchange.h
index e2cc1a3535..2e107142b7 100644
--- a/cpp/src/qpid/broker/TopicExchange.h
+++ b/cpp/src/qpid/broker/TopicExchange.h
@@ -71,7 +71,7 @@ class TopicPattern : public Tokens
};
class TopicExchange : public virtual Exchange{
- typedef std::map<TopicPattern, Queue::vector> BindingMap;
+ typedef std::map<TopicPattern, Binding::vector> BindingMap;
BindingMap bindings;
qpid::sys::RWlock lock;
@@ -79,9 +79,9 @@ class TopicExchange : public virtual Exchange{
public:
static const std::string typeName;
- TopicExchange(const string& name);
+ TopicExchange(const string& name, management::Manageable* parent = 0);
TopicExchange(const string& _name, bool _durable,
- const qpid::framing::FieldTable& _args);
+ const qpid::framing::FieldTable& _args, management::Manageable* parent = 0);
virtual std::string getType() const { return typeName; }