diff options
Diffstat (limited to 'cpp/src/tests/storePerftools/asyncPerf/MessageProducer.h')
-rw-r--r-- | cpp/src/tests/storePerftools/asyncPerf/MessageProducer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/MessageProducer.h b/cpp/src/tests/storePerftools/asyncPerf/MessageProducer.h index 5cb6d7c5f8..746247e849 100644 --- a/cpp/src/tests/storePerftools/asyncPerf/MessageProducer.h +++ b/cpp/src/tests/storePerftools/asyncPerf/MessageProducer.h @@ -37,7 +37,7 @@ namespace tests { namespace storePerftools { namespace asyncPerf { -class MockPersistableQueue; +class SimplePersistableQueue; class TestOptions; class MessageProducer @@ -46,7 +46,7 @@ public: MessageProducer(const TestOptions& perfTestParams, const char* msgData, qpid::asyncStore::AsyncStoreImpl* store, - boost::shared_ptr<MockPersistableQueue> queue); + boost::shared_ptr<SimplePersistableQueue> queue); virtual ~MessageProducer(); void* runProducers(); static void* startProducers(void* ptr); @@ -54,7 +54,7 @@ private: const TestOptions& m_perfTestParams; const char* m_msgData; qpid::asyncStore::AsyncStoreImpl* m_store; - boost::shared_ptr<MockPersistableQueue> m_queue; + boost::shared_ptr<SimplePersistableQueue> m_queue; }; }}} // namespace tests::storePerftools::asyncPerf |