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 | 62fcd3aba9edec066e39de64c2f1c54342282a16 (patch) | |
tree | 533f8b9410773e506d8489b7ebf05c3713051d51 /cpp/src/tests/TxBufferTest.cpp | |
parent | b459a5ce0fd1857d894b8c242da00283fffc1b82 (diff) | |
download | qpid-python-62fcd3aba9edec066e39de64c2f1c54342282a16.tar.gz |
Added extra method to transaction control interface for store plugins.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@527467 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/TxBufferTest.cpp')
-rw-r--r-- | cpp/src/tests/TxBufferTest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/tests/TxBufferTest.cpp b/cpp/src/tests/TxBufferTest.cpp index 91ccc1e47d..f87c33d817 100644 --- a/cpp/src/tests/TxBufferTest.cpp +++ b/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); |