summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client
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/client
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/client')
-rw-r--r--cpp/src/qpid/client/Channel.cpp (renamed from cpp/src/qpid/client/ClientChannel.cpp)4
-rw-r--r--cpp/src/qpid/client/Channel.h (renamed from cpp/src/qpid/client/ClientChannel.h)12
-rw-r--r--cpp/src/qpid/client/Connection.cpp (renamed from cpp/src/qpid/client/ClientConnection.cpp)4
-rw-r--r--cpp/src/qpid/client/Connection.h2
-rw-r--r--cpp/src/qpid/client/Dispatcher.cpp2
-rw-r--r--cpp/src/qpid/client/Exchange.cpp (renamed from cpp/src/qpid/client/ClientExchange.cpp)2
-rw-r--r--cpp/src/qpid/client/Exchange.h (renamed from cpp/src/qpid/client/ClientExchange.h)0
-rw-r--r--cpp/src/qpid/client/Message.h (renamed from cpp/src/qpid/client/ClientMessage.h)6
-rw-r--r--cpp/src/qpid/client/MessageListener.h2
-rw-r--r--cpp/src/qpid/client/Queue.cpp (renamed from cpp/src/qpid/client/ClientQueue.cpp)2
-rw-r--r--cpp/src/qpid/client/Queue.h (renamed from cpp/src/qpid/client/ClientQueue.h)6
11 files changed, 21 insertions, 21 deletions
diff --git a/cpp/src/qpid/client/ClientChannel.cpp b/cpp/src/qpid/client/Channel.cpp
index f5362bf688..cef34630db 100644
--- a/cpp/src/qpid/client/ClientChannel.cpp
+++ b/cpp/src/qpid/client/Channel.cpp
@@ -21,9 +21,9 @@
#include "qpid/log/Statement.h"
#include <iostream>
#include <sstream>
-#include "ClientChannel.h"
+#include "Channel.h"
#include "qpid/sys/Monitor.h"
-#include "ClientMessage.h"
+#include "Message.h"
#include "qpid/QpidError.h"
#include "Connection.h"
#include "Demux.h"
diff --git a/cpp/src/qpid/client/ClientChannel.h b/cpp/src/qpid/client/Channel.h
index 527f5d418f..bf0b289077 100644
--- a/cpp/src/qpid/client/ClientChannel.h
+++ b/cpp/src/qpid/client/Channel.h
@@ -1,5 +1,5 @@
-#ifndef _client_ClientChannel_h
-#define _client_ClientChannel_h
+#ifndef _client_Channel_h
+#define _client_Channel_h
/*
*
@@ -25,9 +25,9 @@
#include <boost/scoped_ptr.hpp>
#include "qpid/framing/amqp_framing.h"
#include "qpid/framing/Uuid.h"
-#include "ClientExchange.h"
-#include "ClientMessage.h"
-#include "ClientQueue.h"
+#include "Exchange.h"
+#include "Message.h"
+#include "Queue.h"
#include "ConnectionImpl.h"
#include "qpid/client/Session.h"
#include "qpid/Exception.h"
@@ -313,4 +313,4 @@ class Channel : private sys::Runnable
}}
-#endif /*!_client_ClientChannel_h*/
+#endif /*!_client_Channel_h*/
diff --git a/cpp/src/qpid/client/ClientConnection.cpp b/cpp/src/qpid/client/Connection.cpp
index 8c5f83f9f5..cef076527f 100644
--- a/cpp/src/qpid/client/ClientConnection.cpp
+++ b/cpp/src/qpid/client/Connection.cpp
@@ -23,8 +23,8 @@
#include <boost/bind.hpp>
#include "Connection.h"
-#include "ClientChannel.h"
-#include "ClientMessage.h"
+#include "Channel.h"
+#include "Message.h"
#include "ScopedAssociation.h"
#include "qpid/log/Logger.h"
#include "qpid/log/Options.h"
diff --git a/cpp/src/qpid/client/Connection.h b/cpp/src/qpid/client/Connection.h
index e309b5c63e..f5d6a387a9 100644
--- a/cpp/src/qpid/client/Connection.h
+++ b/cpp/src/qpid/client/Connection.h
@@ -24,7 +24,7 @@
#include <map>
#include <string>
#include "qpid/QpidError.h"
-#include "ClientChannel.h"
+#include "Channel.h"
#include "ConnectionImpl.h"
#include "qpid/client/Session.h"
#include "qpid/framing/AMQP_HighestVersion.h"
diff --git a/cpp/src/qpid/client/Dispatcher.cpp b/cpp/src/qpid/client/Dispatcher.cpp
index 8f3ed8bcbe..fd437725ce 100644
--- a/cpp/src/qpid/client/Dispatcher.cpp
+++ b/cpp/src/qpid/client/Dispatcher.cpp
@@ -25,7 +25,7 @@
#include "qpid/framing/MessageTransferBody.h"
#include "qpid/log/Statement.h"
#include "BlockingQueue.h"
-#include "ClientMessage.h"
+#include "Message.h"
using qpid::framing::FrameSet;
using qpid::framing::MessageTransferBody;
diff --git a/cpp/src/qpid/client/ClientExchange.cpp b/cpp/src/qpid/client/Exchange.cpp
index d5914beea2..e7fbdeb47e 100644
--- a/cpp/src/qpid/client/ClientExchange.cpp
+++ b/cpp/src/qpid/client/Exchange.cpp
@@ -18,7 +18,7 @@
* under the License.
*
*/
-#include "ClientExchange.h"
+#include "Exchange.h"
qpid::client::Exchange::Exchange(std::string _name, std::string _type) : name(_name), type(_type){}
const std::string& qpid::client::Exchange::getName() const { return name; }
diff --git a/cpp/src/qpid/client/ClientExchange.h b/cpp/src/qpid/client/Exchange.h
index a8ac21fa9b..a8ac21fa9b 100644
--- a/cpp/src/qpid/client/ClientExchange.h
+++ b/cpp/src/qpid/client/Exchange.h
diff --git a/cpp/src/qpid/client/ClientMessage.h b/cpp/src/qpid/client/Message.h
index a573e17940..dab7f3c8d8 100644
--- a/cpp/src/qpid/client/ClientMessage.h
+++ b/cpp/src/qpid/client/Message.h
@@ -1,5 +1,5 @@
-#ifndef _client_ClientMessage_h
-#define _client_ClientMessage_h
+#ifndef _client_Message_h
+#define _client_Message_h
/*
*
@@ -83,4 +83,4 @@ private:
}}
-#endif /*!_client_ClientMessage_h*/
+#endif /*!_client_Message_h*/
diff --git a/cpp/src/qpid/client/MessageListener.h b/cpp/src/qpid/client/MessageListener.h
index 501862a3ef..86e5dd63dc 100644
--- a/cpp/src/qpid/client/MessageListener.h
+++ b/cpp/src/qpid/client/MessageListener.h
@@ -23,7 +23,7 @@
#ifndef _MessageListener_
#define _MessageListener_
-#include "ClientMessage.h"
+#include "Message.h"
namespace qpid {
namespace client {
diff --git a/cpp/src/qpid/client/ClientQueue.cpp b/cpp/src/qpid/client/Queue.cpp
index 613cf8d288..1752a48a3a 100644
--- a/cpp/src/qpid/client/ClientQueue.cpp
+++ b/cpp/src/qpid/client/Queue.cpp
@@ -18,7 +18,7 @@
* under the License.
*
*/
-#include "ClientQueue.h"
+#include "Queue.h"
qpid::client::Queue::Queue() : name(""), autodelete(true), exclusive(true), durable(false){}
diff --git a/cpp/src/qpid/client/ClientQueue.h b/cpp/src/qpid/client/Queue.h
index b37a44b004..9ab8c70b08 100644
--- a/cpp/src/qpid/client/ClientQueue.h
+++ b/cpp/src/qpid/client/Queue.h
@@ -1,5 +1,5 @@
-#ifndef _client_ClientQueue_h
-#define _client_ClientQueue_h
+#ifndef _client_Queue_h
+#define _client_Queue_h
/*
*
@@ -100,4 +100,4 @@ namespace client {
}
}
-#endif /*!_client_ClientQueue_h*/
+#endif /*!_client_Queue_h*/