diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2012-08-01 14:05:21 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2012-08-01 14:05:21 +0000 |
| commit | 80bfab9ed823cebd9f8f58b559fd32df108bcf7d (patch) | |
| tree | 191bf724b9bf5b8394343d60ac4eac804e9c3d3a /cpp/src/qpid/asyncStore/TxnHandleImpl.cpp | |
| parent | 63c6598f401ac6406e5a31c602c7892b798536fc (diff) | |
| download | qpid-python-80bfab9ed823cebd9f8f58b559fd32df108bcf7d.tar.gz | |
QPID-3858: WIP: Moving Simple* test classes into the correct namespaces so as to correspond with broker classes.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1368006 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/asyncStore/TxnHandleImpl.cpp')
| -rw-r--r-- | cpp/src/qpid/asyncStore/TxnHandleImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/asyncStore/TxnHandleImpl.cpp b/cpp/src/qpid/asyncStore/TxnHandleImpl.cpp index dd644b29bd..50dce1b2af 100644 --- a/cpp/src/qpid/asyncStore/TxnHandleImpl.cpp +++ b/cpp/src/qpid/asyncStore/TxnHandleImpl.cpp @@ -31,7 +31,7 @@ TxnHandleImpl::TxnHandleImpl() : m_txnBuffer(0) {} -TxnHandleImpl::TxnHandleImpl(qpid::broker::TxnBuffer* tb) : +TxnHandleImpl::TxnHandleImpl(qpid::broker::SimpleTxnBuffer* tb) : m_tpcFlag(false), m_txnBuffer(tb) {} @@ -44,7 +44,7 @@ TxnHandleImpl::TxnHandleImpl(const std::string& xid, const bool tpcFlag) : TxnHandleImpl::TxnHandleImpl(const std::string& xid, const bool tpcFlag, - qpid::broker::TxnBuffer* tb) : + qpid::broker::SimpleTxnBuffer* tb) : m_xid(xid), m_tpcFlag(tpcFlag), m_txnBuffer(tb) |
