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 | f46585b940fc4b320fa28535b05e5bc6e89228cf (patch) | |
tree | 454b17188da7ea7e89950424478edbb31e728afd /qpid/cpp/src/tests/QueueTest.cpp | |
parent | d4b4744b393d6228ccb5488a01792aeab5bd4865 (diff) | |
download | qpid-python-f46585b940fc4b320fa28535b05e5bc6e89228cf.tar.gz |
Added getStoreDir() to MessageStore
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@882218 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/QueueTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/QueueTest.cpp b/qpid/cpp/src/tests/QueueTest.cpp index 6c2adf5c87..cda9728dd4 100644 --- a/qpid/cpp/src/tests/QueueTest.cpp +++ b/qpid/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(); } }; |