summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/NullMessageStore.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-06-05 15:54:22 +0000
committerGordon Sim <gsim@apache.org>2007-06-05 15:54:22 +0000
commitdd86a8562275d411ba6af54b6651154b6abc08ef (patch)
treee7bd5e5ed838f041857e2f77461ad3f5759448e7 /cpp/src/qpid/broker/NullMessageStore.h
parentabf98a7ed4bd2d08d88b7f4f5d753b2e6d6dceb2 (diff)
downloadqpid-python-dd86a8562275d411ba6af54b6651154b6abc08ef.tar.gz
Some tests and fixes for dtx preview.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@544522 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/NullMessageStore.h')
-rw-r--r--cpp/src/qpid/broker/NullMessageStore.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/NullMessageStore.h b/cpp/src/qpid/broker/NullMessageStore.h
index 2835961048..e6188b43ce 100644
--- a/cpp/src/qpid/broker/NullMessageStore.h
+++ b/cpp/src/qpid/broker/NullMessageStore.h
@@ -21,6 +21,7 @@
#ifndef _NullMessageStore_
#define _NullMessageStore_
+#include <set>
#include "BrokerMessage.h"
#include "MessageStore.h"
#include "BrokerQueue.h"
@@ -33,6 +34,7 @@ namespace broker {
*/
class NullMessageStore : public MessageStore
{
+ std::set<std::string> prepared;
const bool warn;
public:
NullMessageStore(bool warn = false);