summaryrefslogtreecommitdiff
path: root/cpp/src/tests/storePerftools/asyncPerf/PerfTest.h
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2012-08-01 14:05:21 +0000
committerKim van der Riet <kpvdr@apache.org>2012-08-01 14:05:21 +0000
commit80bfab9ed823cebd9f8f58b559fd32df108bcf7d (patch)
tree191bf724b9bf5b8394343d60ac4eac804e9c3d3a /cpp/src/tests/storePerftools/asyncPerf/PerfTest.h
parent63c6598f401ac6406e5a31c602c7892b798536fc (diff)
downloadqpid-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/tests/storePerftools/asyncPerf/PerfTest.h')
-rw-r--r--cpp/src/tests/storePerftools/asyncPerf/PerfTest.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/PerfTest.h b/cpp/src/tests/storePerftools/asyncPerf/PerfTest.h
index e4d99021b5..27d8d08faf 100644
--- a/cpp/src/tests/storePerftools/asyncPerf/PerfTest.h
+++ b/cpp/src/tests/storePerftools/asyncPerf/PerfTest.h
@@ -37,9 +37,11 @@
namespace qpid {
namespace asyncStore {
-class AsyncStoreImpl;
class AsyncStoreOptions;
}
+namespace broker {
+class SimpleQueue;
+}
namespace sys {
class Poller;
}}
@@ -48,7 +50,6 @@ namespace tests {
namespace storePerftools {
namespace asyncPerf {
-class SimpleQueue;
class MessageConsumer;
class MessageProducer;
class TestOptions;
@@ -73,8 +74,8 @@ private:
boost::shared_ptr<qpid::sys::Poller> m_poller;
qpid::sys::Thread m_pollingThread;
qpid::broker::AsyncResultQueueImpl m_resultQueue;
- qpid::asyncStore::AsyncStoreImpl* m_store;
- std::deque<boost::shared_ptr<SimpleQueue> > m_queueList;
+ qpid::broker::AsyncStore* m_store;
+ std::deque<boost::shared_ptr<qpid::broker::SimpleQueue> > m_queueList;
std::deque<boost::shared_ptr<MessageProducer> > m_producers;
std::deque<boost::shared_ptr<MessageConsumer> > m_consumers;