summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/TopicExchange.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-10-31 19:53:55 +0000
committerAlan Conway <aconway@apache.org>2006-10-31 19:53:55 +0000
commit9094d2b10ecadd66fa3b22169183e7573cc79629 (patch)
treebf3915f72be2a5f09932b800d2fa4309fb3ad64e /cpp/src/qpid/broker/TopicExchange.h
parent0487ea40bc6568765cdec75a36273eeb26fae854 (diff)
downloadqpid-python-9094d2b10ecadd66fa3b22169183e7573cc79629.tar.gz
IO refactor phase 1. Reduced dependencies, removed redundant classes.
Renamed pricipal APR classes in preparation for move to apr namespace. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@469625 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/TopicExchange.h')
-rw-r--r--cpp/src/qpid/broker/TopicExchange.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/TopicExchange.h b/cpp/src/qpid/broker/TopicExchange.h
index 19ea732fbc..cb773b9a56 100644
--- a/cpp/src/qpid/broker/TopicExchange.h
+++ b/cpp/src/qpid/broker/TopicExchange.h
@@ -23,7 +23,7 @@
#include "qpid/broker/Exchange.h"
#include "qpid/framing/FieldTable.h"
#include "qpid/broker/Message.h"
-#include "qpid/concurrent/MonitorImpl.h"
+#include "qpid/concurrent/Monitor.h"
#include "qpid/broker/Queue.h"
namespace qpid {
@@ -71,7 +71,7 @@ class TopicPattern : public Tokens
class TopicExchange : public virtual Exchange{
typedef std::map<TopicPattern, Queue::vector> BindingMap;
BindingMap bindings;
- qpid::concurrent::MonitorImpl lock;
+ qpid::concurrent::Monitor lock;
public:
static const std::string typeName;