summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/RecoverableExchange.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/broker/RecoverableExchange.h')
-rw-r--r--cpp/src/qpid/broker/RecoverableExchange.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/RecoverableExchange.h b/cpp/src/qpid/broker/RecoverableExchange.h
index ca6cc1541e..6bda1e2617 100644
--- a/cpp/src/qpid/broker/RecoverableExchange.h
+++ b/cpp/src/qpid/broker/RecoverableExchange.h
@@ -27,6 +27,7 @@
namespace qpid {
namespace broker {
+class AsyncStore;
/**
* The interface through which bindings are recovered.
@@ -42,7 +43,8 @@ public:
*/
virtual void bind(const std::string& queue,
const std::string& routingKey,
- qpid::framing::FieldTable& args) = 0;
+ qpid::framing::FieldTable&,
+ AsyncStore* const store) = 0;
virtual ~RecoverableExchange() {};
};