summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-09-25 18:16:02 +0000
committerAlan Conway <aconway@apache.org>2007-09-25 18:16:02 +0000
commit00b761b3b6d80ee2bb3e538face881748efb2b09 (patch)
tree59c1b38093bb0cd993863f8c72cd8d22a3aa7bb9 /cpp/src/qpid/broker
parentbbdaa6ec54ad9d04baa5ae1cb4d99c0387aa7d9d (diff)
downloadqpid-python-00b761b3b6d80ee2bb3e538face881748efb2b09.tar.gz
Renamed the following files for consistency:
broker/BrokerExchange.cpp -> Exchange.cpp broker/BrokerExchange.h -> Exchange.h broker/BrokerQueue.cpp -> Queue.cpp broker/BrokerQueue.h -> Queue.h client/ClientChannel.cpp -> Channel.cpp client/ClientChannel.h -> Channel.h client/ClientConnection.cpp -> Connection.cpp client/ClientExchange.cpp -> Exchange.cpp client/ClientExchange.h -> Exchange.h client/ClientMessage.h -> Message.h client/ClientQueue.cpp -> Queue.cpp client/ClientQueue.h -> Queue.h git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@579340 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker')
-rw-r--r--cpp/src/qpid/broker/Deliverable.h2
-rw-r--r--cpp/src/qpid/broker/DeliverableMessage.h2
-rw-r--r--cpp/src/qpid/broker/DeliveryRecord.cpp2
-rw-r--r--cpp/src/qpid/broker/DeliveryRecord.h2
-rw-r--r--cpp/src/qpid/broker/DirectExchange.h4
-rw-r--r--cpp/src/qpid/broker/Exchange.cpp (renamed from cpp/src/qpid/broker/BrokerExchange.cpp)2
-rw-r--r--cpp/src/qpid/broker/Exchange.h (renamed from cpp/src/qpid/broker/BrokerExchange.h)8
-rw-r--r--cpp/src/qpid/broker/ExchangeRegistry.h2
-rw-r--r--cpp/src/qpid/broker/FanOutExchange.h4
-rw-r--r--cpp/src/qpid/broker/HeadersExchange.h4
-rw-r--r--cpp/src/qpid/broker/MessageDelivery.cpp2
-rw-r--r--cpp/src/qpid/broker/MessageStoreModule.h2
-rw-r--r--cpp/src/qpid/broker/NullMessageStore.h2
-rw-r--r--cpp/src/qpid/broker/Queue.cpp (renamed from cpp/src/qpid/broker/BrokerQueue.cpp)4
-rw-r--r--cpp/src/qpid/broker/Queue.h (renamed from cpp/src/qpid/broker/BrokerQueue.h)6
-rw-r--r--cpp/src/qpid/broker/QueueRegistry.h2
-rw-r--r--cpp/src/qpid/broker/RecoveredDequeue.h2
-rw-r--r--cpp/src/qpid/broker/RecoveredEnqueue.h2
-rw-r--r--cpp/src/qpid/broker/RecoveryManagerImpl.cpp2
-rw-r--r--cpp/src/qpid/broker/SemanticState.cpp2
-rw-r--r--cpp/src/qpid/broker/TopicExchange.h4
-rw-r--r--cpp/src/qpid/broker/TxPublish.h2
22 files changed, 32 insertions, 32 deletions
diff --git a/cpp/src/qpid/broker/Deliverable.h b/cpp/src/qpid/broker/Deliverable.h
index cd1dbaa85d..bdea550159 100644
--- a/cpp/src/qpid/broker/Deliverable.h
+++ b/cpp/src/qpid/broker/Deliverable.h
@@ -21,7 +21,7 @@
#ifndef _Deliverable_
#define _Deliverable_
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/DeliverableMessage.h b/cpp/src/qpid/broker/DeliverableMessage.h
index 9719d972fc..07bca40461 100644
--- a/cpp/src/qpid/broker/DeliverableMessage.h
+++ b/cpp/src/qpid/broker/DeliverableMessage.h
@@ -22,7 +22,7 @@
#define _DeliverableMessage_
#include "Deliverable.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "Message.h"
namespace qpid {
diff --git a/cpp/src/qpid/broker/DeliveryRecord.cpp b/cpp/src/qpid/broker/DeliveryRecord.cpp
index 36e6c22f88..f9218655a4 100644
--- a/cpp/src/qpid/broker/DeliveryRecord.cpp
+++ b/cpp/src/qpid/broker/DeliveryRecord.cpp
@@ -21,7 +21,7 @@
#include "DeliveryRecord.h"
#include "DeliverableMessage.h"
#include "SemanticState.h"
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "qpid/log/Statement.h"
using namespace qpid::broker;
diff --git a/cpp/src/qpid/broker/DeliveryRecord.h b/cpp/src/qpid/broker/DeliveryRecord.h
index 3c833fcaa8..f2c343e27a 100644
--- a/cpp/src/qpid/broker/DeliveryRecord.h
+++ b/cpp/src/qpid/broker/DeliveryRecord.h
@@ -26,7 +26,7 @@
#include <vector>
#include <ostream>
#include "qpid/framing/AccumulatedAck.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "Consumer.h"
#include "DeliveryId.h"
#include "Message.h"
diff --git a/cpp/src/qpid/broker/DirectExchange.h b/cpp/src/qpid/broker/DirectExchange.h
index 7b20bd610c..243f51d6a8 100644
--- a/cpp/src/qpid/broker/DirectExchange.h
+++ b/cpp/src/qpid/broker/DirectExchange.h
@@ -23,10 +23,10 @@
#include <map>
#include <vector>
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "qpid/framing/FieldTable.h"
#include "qpid/sys/Monitor.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/BrokerExchange.cpp b/cpp/src/qpid/broker/Exchange.cpp
index 4eaf40dbc8..04407eb774 100644
--- a/cpp/src/qpid/broker/BrokerExchange.cpp
+++ b/cpp/src/qpid/broker/Exchange.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "ExchangeRegistry.h"
using namespace qpid::broker;
diff --git a/cpp/src/qpid/broker/BrokerExchange.h b/cpp/src/qpid/broker/Exchange.h
index c3dd7b998d..5febca0ae9 100644
--- a/cpp/src/qpid/broker/BrokerExchange.h
+++ b/cpp/src/qpid/broker/Exchange.h
@@ -1,5 +1,5 @@
-#ifndef _broker_BrokerExchange_h
-#define _broker_BrokerExchange_h
+#ifndef _broker_Exchange_h
+#define _broker_Exchange_h
/*
*
@@ -24,7 +24,7 @@
#include <boost/shared_ptr.hpp>
#include "Deliverable.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "MessageStore.h"
#include "PersistableExchange.h"
#include "qpid/framing/FieldTable.h"
@@ -80,4 +80,4 @@ namespace qpid {
}
-#endif /*!_broker_BrokerExchange_h*/
+#endif /*!_broker_Exchange.cpp_h*/
diff --git a/cpp/src/qpid/broker/ExchangeRegistry.h b/cpp/src/qpid/broker/ExchangeRegistry.h
index 5505a4074a..f7f29ff0ea 100644
--- a/cpp/src/qpid/broker/ExchangeRegistry.h
+++ b/cpp/src/qpid/broker/ExchangeRegistry.h
@@ -23,7 +23,7 @@
*/
#include <map>
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "MessageStore.h"
#include "qpid/framing/FieldTable.h"
#include "qpid/sys/Monitor.h"
diff --git a/cpp/src/qpid/broker/FanOutExchange.h b/cpp/src/qpid/broker/FanOutExchange.h
index 070e438bcc..625afc8cce 100644
--- a/cpp/src/qpid/broker/FanOutExchange.h
+++ b/cpp/src/qpid/broker/FanOutExchange.h
@@ -23,10 +23,10 @@
#include <map>
#include <vector>
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "qpid/framing/FieldTable.h"
#include "qpid/sys/Monitor.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/HeadersExchange.h b/cpp/src/qpid/broker/HeadersExchange.h
index 48d115c1ec..f7abf3514b 100644
--- a/cpp/src/qpid/broker/HeadersExchange.h
+++ b/cpp/src/qpid/broker/HeadersExchange.h
@@ -22,10 +22,10 @@
#define _HeadersExchange_
#include <vector>
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "qpid/framing/FieldTable.h"
#include "qpid/sys/Monitor.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/MessageDelivery.cpp b/cpp/src/qpid/broker/MessageDelivery.cpp
index edacd7a1c1..2eea97ced0 100644
--- a/cpp/src/qpid/broker/MessageDelivery.cpp
+++ b/cpp/src/qpid/broker/MessageDelivery.cpp
@@ -22,7 +22,7 @@
#include "DeliveryToken.h"
#include "Message.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "qpid/framing/FrameHandler.h"
#include "qpid/framing/BasicDeliverBody.h"
#include "qpid/framing/BasicGetOkBody.h"
diff --git a/cpp/src/qpid/broker/MessageStoreModule.h b/cpp/src/qpid/broker/MessageStoreModule.h
index 271da92b1e..46dbd35ec9 100644
--- a/cpp/src/qpid/broker/MessageStoreModule.h
+++ b/cpp/src/qpid/broker/MessageStoreModule.h
@@ -22,7 +22,7 @@
#define _MessageStoreModule_
#include "MessageStore.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "RecoveryManager.h"
#include "qpid/sys/Module.h"
diff --git a/cpp/src/qpid/broker/NullMessageStore.h b/cpp/src/qpid/broker/NullMessageStore.h
index c27a0ad53a..5698d8a16d 100644
--- a/cpp/src/qpid/broker/NullMessageStore.h
+++ b/cpp/src/qpid/broker/NullMessageStore.h
@@ -23,7 +23,7 @@
#include <set>
#include "MessageStore.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/BrokerQueue.cpp b/cpp/src/qpid/broker/Queue.cpp
index 74ba4f24ed..95fff2e789 100644
--- a/cpp/src/qpid/broker/BrokerQueue.cpp
+++ b/cpp/src/qpid/broker/Queue.cpp
@@ -22,8 +22,8 @@
#include <boost/format.hpp>
#include "qpid/log/Statement.h"
-#include "BrokerQueue.h"
-#include "BrokerExchange.h"
+#include "Queue.h"
+#include "Exchange.h"
#include "DeliverableMessage.h"
#include "MessageStore.h"
#include "qpid/sys/Monitor.h"
diff --git a/cpp/src/qpid/broker/BrokerQueue.h b/cpp/src/qpid/broker/Queue.h
index 4b6070d11c..17ace522c3 100644
--- a/cpp/src/qpid/broker/BrokerQueue.h
+++ b/cpp/src/qpid/broker/Queue.h
@@ -1,5 +1,5 @@
-#ifndef _broker_BrokerQueue_h
-#define _broker_BrokerQueue_h
+#ifndef _broker_Queue_h
+#define _broker_Queue_h
/*
*
@@ -189,4 +189,4 @@ namespace qpid {
}
-#endif /*!_broker_BrokerQueue_h*/
+#endif /*!_broker_Queue_h*/
diff --git a/cpp/src/qpid/broker/QueueRegistry.h b/cpp/src/qpid/broker/QueueRegistry.h
index 22a89d7825..1a766b810a 100644
--- a/cpp/src/qpid/broker/QueueRegistry.h
+++ b/cpp/src/qpid/broker/QueueRegistry.h
@@ -23,7 +23,7 @@
#include <map>
#include "qpid/sys/Mutex.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/RecoveredDequeue.h b/cpp/src/qpid/broker/RecoveredDequeue.h
index 9dcc9d4233..a6d64e6faf 100644
--- a/cpp/src/qpid/broker/RecoveredDequeue.h
+++ b/cpp/src/qpid/broker/RecoveredDequeue.h
@@ -27,7 +27,7 @@
#include "Deliverable.h"
#include "Message.h"
#include "MessageStore.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "TxOp.h"
namespace qpid {
diff --git a/cpp/src/qpid/broker/RecoveredEnqueue.h b/cpp/src/qpid/broker/RecoveredEnqueue.h
index a571343e93..9ada62e62b 100644
--- a/cpp/src/qpid/broker/RecoveredEnqueue.h
+++ b/cpp/src/qpid/broker/RecoveredEnqueue.h
@@ -27,7 +27,7 @@
#include "Deliverable.h"
#include "Message.h"
#include "MessageStore.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "TxOp.h"
namespace qpid {
diff --git a/cpp/src/qpid/broker/RecoveryManagerImpl.cpp b/cpp/src/qpid/broker/RecoveryManagerImpl.cpp
index 45b7c588b6..1e3168137e 100644
--- a/cpp/src/qpid/broker/RecoveryManagerImpl.cpp
+++ b/cpp/src/qpid/broker/RecoveryManagerImpl.cpp
@@ -21,7 +21,7 @@
#include "RecoveryManagerImpl.h"
#include "Message.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "RecoveredEnqueue.h"
#include "RecoveredDequeue.h"
diff --git a/cpp/src/qpid/broker/SemanticState.cpp b/cpp/src/qpid/broker/SemanticState.cpp
index 059f99077c..a3858d0989 100644
--- a/cpp/src/qpid/broker/SemanticState.cpp
+++ b/cpp/src/qpid/broker/SemanticState.cpp
@@ -21,7 +21,7 @@
#include "SessionState.h"
#include "BrokerAdapter.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "Connection.h"
#include "DeliverableMessage.h"
#include "DtxAck.h"
diff --git a/cpp/src/qpid/broker/TopicExchange.h b/cpp/src/qpid/broker/TopicExchange.h
index c411fb1965..e2cc1a3535 100644
--- a/cpp/src/qpid/broker/TopicExchange.h
+++ b/cpp/src/qpid/broker/TopicExchange.h
@@ -23,10 +23,10 @@
#include <map>
#include <vector>
-#include "BrokerExchange.h"
+#include "Exchange.h"
#include "qpid/framing/FieldTable.h"
#include "qpid/sys/Monitor.h"
-#include "BrokerQueue.h"
+#include "Queue.h"
namespace qpid {
namespace broker {
diff --git a/cpp/src/qpid/broker/TxPublish.h b/cpp/src/qpid/broker/TxPublish.h
index 564e021c5a..2e3268010a 100644
--- a/cpp/src/qpid/broker/TxPublish.h
+++ b/cpp/src/qpid/broker/TxPublish.h
@@ -24,7 +24,7 @@
#include <algorithm>
#include <functional>
#include <list>
-#include "BrokerQueue.h"
+#include "Queue.h"
#include "Deliverable.h"
#include "Message.h"
#include "MessageStore.h"