diff options
author | Alan Conway <aconway@apache.org> | 2006-11-06 16:43:31 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-11-06 16:43:31 +0000 |
commit | 0c3f1084652f7d81f1ca992676e90c158eeb3e65 (patch) | |
tree | 7488712d1ce7cc8ac5dcda656a36ee303d2d2e14 /cpp/test/client | |
parent | 7847c1c0326e654845868ab4ab4ec27863a3e777 (diff) | |
download | qpid-python-0c3f1084652f7d81f1ca992676e90c158eeb3e65.tar.gz |
Minor source reorg, see README.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@471789 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/test/client')
-rw-r--r-- | cpp/test/client/client_test.cpp | 4 | ||||
-rw-r--r-- | cpp/test/client/topic_publisher.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/client/client_test.cpp b/cpp/test/client/client_test.cpp index 2a1f1a9747..0e57babbef 100644 --- a/cpp/test/client/client_test.cpp +++ b/cpp/test/client/client_test.cpp @@ -22,11 +22,11 @@ #include "qpid/client/Connection.h" #include "qpid/client/Message.h" #include "qpid/client/MessageListener.h" -#include "qpid/concurrent/Monitor.h" +#include "qpid/sys/Monitor.h" #include "qpid/framing/FieldTable.h" using namespace qpid::client; -using namespace qpid::concurrent; +using namespace qpid::sys; class SimpleListener : public virtual MessageListener{ Monitor* monitor; diff --git a/cpp/test/client/topic_publisher.cpp b/cpp/test/client/topic_publisher.cpp index e53b70cc75..119d275cfd 100644 --- a/cpp/test/client/topic_publisher.cpp +++ b/cpp/test/client/topic_publisher.cpp @@ -21,14 +21,14 @@ #include "qpid/client/Exchange.h" #include "qpid/client/MessageListener.h" #include "qpid/client/Queue.h" -#include "qpid/concurrent/Monitor.h" +#include "qpid/sys/Monitor.h" #include "unistd.h" #include <apr-1/apr_time.h> #include <cstdlib> #include <iostream> using namespace qpid::client; -using namespace qpid::concurrent; +using namespace qpid::sys; class Publisher : public MessageListener{ Channel* const channel; |