diff options
author | Alan Conway <aconway@apache.org> | 2009-11-19 17:50:34 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-11-19 17:50:34 +0000 |
commit | 61a729cc2bab7b56b9d2061dc5ac63dd7b5d36c7 (patch) | |
tree | 67233e032279f2b8352a48448d1894d3cf60e717 /cpp/src/tests/QueueTest.cpp | |
parent | cda1bccc222f23597c1d430c564b9a412c30b0ba (diff) | |
download | qpid-python-61a729cc2bab7b56b9d2061dc5ac63dd7b5d36c7.tar.gz |
Added getStoreDir() to MessageStore
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@882218 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | cpp/src/tests/QueueTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/tests/QueueTest.cpp b/cpp/src/tests/QueueTest.cpp index 6c2adf5c87..cda9728dd4 100644 --- a/cpp/src/tests/QueueTest.cpp +++ b/cpp/src/tests/QueueTest.cpp @@ -409,6 +409,8 @@ class TestMessageStoreOC : public MessageStore void collectPreparedXids(std::set<std::string>& out) { out.insert(prepared.begin(), prepared.end()); } void recover(RecoveryManager&) {} + + std::string getStoreDir() const { return std::string(); } }; |