diff options
author | Gordon Sim <gsim@apache.org> | 2007-04-11 12:10:17 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-04-11 12:10:17 +0000 |
commit | da821ce9991650d72d67172979ca117eb6744b58 (patch) | |
tree | 27b4ef817ca3e020fec930177a81350b2508741d /qpid/cpp/src/tests/TxBufferTest.cpp | |
parent | cdb9ba0aa9245c41af97c1468b85aa439548ed6e (diff) | |
download | qpid-python-da821ce9991650d72d67172979ca117eb6744b58.tar.gz |
Added extra method to transaction control interface for store plugins.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@527467 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/TxBufferTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/TxBufferTest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/TxBufferTest.cpp b/qpid/cpp/src/tests/TxBufferTest.cpp index 91ccc1e47d..f87c33d817 100644 --- a/qpid/cpp/src/tests/TxBufferTest.cpp +++ b/qpid/cpp/src/tests/TxBufferTest.cpp @@ -111,6 +111,11 @@ class TxBufferTest : public CppUnit::TestCase void prepare(TPCTransactionContext&){ throw "Operation not supported"; } + void collectPreparedXids(std::set<std::string>&) + { + throw "Operation not supported"; + } + std::auto_ptr<TransactionContext> begin(){ actual.push_back(BEGIN); |