diff options
| author | Alan Conway <aconway@apache.org> | 2007-09-25 18:16:02 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-09-25 18:16:02 +0000 |
| commit | 00b761b3b6d80ee2bb3e538face881748efb2b09 (patch) | |
| tree | 59c1b38093bb0cd993863f8c72cd8d22a3aa7bb9 /cpp/src/Makefile.am | |
| parent | bbdaa6ec54ad9d04baa5ae1cb4d99c0387aa7d9d (diff) | |
| download | qpid-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/Makefile.am')
| -rw-r--r-- | cpp/src/Makefile.am | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index e70b4d5a1b..ae3eb4c403 100644 --- a/cpp/src/Makefile.am +++ b/cpp/src/Makefile.am @@ -140,8 +140,8 @@ libqpidbroker_la_SOURCES = \ qpid/broker/Broker.cpp \ qpid/broker/BrokerAdapter.cpp \ qpid/broker/BrokerSingleton.cpp \ - qpid/broker/BrokerExchange.cpp \ - qpid/broker/BrokerQueue.cpp \ + qpid/broker/Exchange.cpp \ + qpid/broker/Queue.cpp \ qpid/broker/Connection.cpp \ qpid/broker/ConnectionHandler.cpp \ qpid/broker/ConnectionFactory.cpp \ @@ -191,10 +191,10 @@ libqpidbroker_la_SOURCES = \ libqpidclient_la_LIBADD = libqpidcommon.la libqpidclient_la_SOURCES = \ $(rgen_client_cpp) \ - qpid/client/ClientConnection.cpp \ - qpid/client/ClientChannel.cpp \ - qpid/client/ClientExchange.cpp \ - qpid/client/ClientQueue.cpp \ + qpid/client/Connection.cpp \ + qpid/client/Channel.cpp \ + qpid/client/Exchange.cpp \ + qpid/client/Queue.cpp \ qpid/client/ConnectionImpl.cpp \ qpid/client/Connector.cpp \ qpid/client/Demux.cpp \ @@ -225,8 +225,8 @@ nobase_include_HEADERS = \ qpid/shared_ptr.h \ qpid/broker/Broker.h \ qpid/broker/BrokerAdapter.h \ - qpid/broker/BrokerExchange.h \ - qpid/broker/BrokerQueue.h \ + qpid/broker/Exchange.h \ + qpid/broker/Queue.h \ qpid/broker/BrokerSingleton.h \ qpid/broker/Connection.h \ qpid/broker/ConnectionFactory.h \ @@ -288,10 +288,10 @@ nobase_include_HEADERS = \ qpid/client/AckMode.h \ qpid/client/BlockingQueue.h \ qpid/client/ChainableFrameHandler.h \ - qpid/client/ClientChannel.h \ - qpid/client/ClientExchange.h \ - qpid/client/ClientMessage.h \ - qpid/client/ClientQueue.h \ + qpid/client/Channel.h \ + qpid/client/Exchange.h \ + qpid/client/Message.h \ + qpid/client/Queue.h \ qpid/client/Completion.h \ qpid/client/CompletionTracker.h \ qpid/client/Connection.h \ |
