summaryrefslogtreecommitdiff
path: root/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-04-20 12:10:37 +0000
committerGordon Sim <gsim@apache.org>2008-04-20 12:10:37 +0000
commit0637677cf6653256b67c82dcb74f35133601220c (patch)
tree8507bb8373e8b6dfd8c9b96fcb4b262fd4d61501 /cpp/src/Makefile.am
parent48dab065ef526f68a5a7d4c4ba22c5b8b2e2e026 (diff)
downloadqpid-python-0637677cf6653256b67c82dcb74f35133601220c.tar.gz
QPID-920: converted c++ client to use final 0-10 protocol
* connection handler converted to using invoker & proxy and updated to final method defs * SessionCore & ExecutionHandler replace by SessionImpl * simplified handling of completion & results, removed handling of responses git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@649915 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
-rw-r--r--cpp/src/Makefile.am20
1 files changed, 7 insertions, 13 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index 82e6f4e6a4..cf4630cdf0 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -265,26 +265,24 @@ libqpidbroker_la_SOURCES = \
libqpidclient_la_LIBADD = libqpidcommon.la
libqpidclient_la_SOURCES = \
$(rgen_client_srcs) \
- qpid/client/SessionBase.cpp \
qpid/client/Connection.cpp \
qpid/client/Channel.cpp \
qpid/client/Exchange.cpp \
- qpid/broker/PersistableMessage.cpp \
qpid/client/Queue.cpp \
qpid/client/ConnectionImpl.cpp \
qpid/client/Connector.cpp \
qpid/client/Demux.cpp \
qpid/client/Dispatcher.cpp \
qpid/client/LocalQueue.cpp \
+ qpid/client/Message.cpp \
qpid/client/MessageListener.cpp \
- qpid/client/Correlator.cpp \
- qpid/client/CompletionTracker.cpp \
qpid/client/ConnectionHandler.cpp \
- qpid/client/ExecutionHandler.cpp \
+ qpid/client/Future.cpp \
qpid/client/FutureCompletion.cpp \
- qpid/client/FutureResponse.cpp \
qpid/client/FutureResult.cpp \
- qpid/client/SessionCore.cpp \
+ qpid/client/Results.cpp \
+ qpid/client/SessionBase.cpp \
+ qpid/client/SessionImpl.cpp \
qpid/client/StateManager.cpp \
qpid/client/SubscriptionManager.cpp
@@ -392,27 +390,23 @@ nobase_include_HEADERS = \
qpid/client/Queue.h \
qpid/client/AckPolicy.h \
qpid/client/Completion.h \
- qpid/client/CompletionTracker.h \
qpid/client/Connection.h \
qpid/client/ConnectionHandler.h \
qpid/client/ConnectionImpl.h \
qpid/client/Connector.h \
- qpid/client/Correlator.h \
qpid/client/Demux.h \
qpid/client/Dispatcher.h \
qpid/client/LocalQueue.h \
qpid/client/Execution.h \
- qpid/client/ExecutionHandler.h \
qpid/client/Future.h \
qpid/client/FutureCompletion.h \
- qpid/client/FutureResponse.h \
qpid/client/FutureResult.h \
qpid/client/MessageListener.h \
qpid/client/MessageQueue.h \
- qpid/client/Response.h \
+ qpid/client/Results.h \
qpid/client/SessionBase.h \
qpid/client/Session.h \
- qpid/client/SessionCore.h \
+ qpid/client/SessionImpl.h \
qpid/client/StateManager.h \
qpid/client/SubscriptionManager.h \
qpid/client/TypedResult.h \