summaryrefslogtreecommitdiff
path: root/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-08-05 13:25:36 +0000
committerGordon Sim <gsim@apache.org>2007-08-05 13:25:36 +0000
commitb2efcb6ed3e1e2104836928cda81ed69f2f24559 (patch)
tree392ae403dcb0d32da3edaeaf8a1f497679d9102c /cpp/src/Makefile.am
parentb2fadec5d86e278d96112e915e67aec934e91046 (diff)
downloadqpid-python-b2efcb6ed3e1e2104836928cda81ed69f2f24559.tar.gz
Added first cut of generated client interface.
Old channel interface still supported; shares SessionCore with the new interface. Todo: allow applications to signal completion of received commands; keywrod args for interface. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@562866 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
-rw-r--r--cpp/src/Makefile.am12
1 files changed, 10 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index abb3587952..ad720754c1 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -46,10 +46,10 @@ rgen_tdir=$(rgen_dir)/templates
rgen_script=$(rgen_dir)/generate
rgen_cmd=ruby -I $(rgen_dir) $(rgen_script)
-rgen_templates=$(rgen_tdir)/frame_body_lists.rb
+rgen_templates=$(rgen_tdir)/frame_body_lists.rb $(rgen_tdir)/Session.rb
rubygen.mk: $(rgen_script) $(specs) $(rgen_templates)
- gen=`$(rgen_cmd) . $(specs) $(rgen_templates)` ; echo Generated $$gen; echo "rgen_srcs=$$gen" > $@
+ gen=`$(rgen_cmd) . $(specs) $(rgen_templates)` ; echo Generated $$gen; echo rgen_srcs=$$gen > $@
$(rgen_srcs): rubygen.mk
@@ -228,6 +228,7 @@ libqpidclient_la_SOURCES = \
qpid/client/ClientChannel.cpp \
qpid/client/ClientExchange.cpp \
qpid/client/ClientQueue.cpp \
+ qpid/client/ConnectionImpl.cpp \
qpid/client/Connector.cpp \
qpid/client/MessageListener.cpp \
qpid/client/ResponseHandler.cpp \
@@ -241,6 +242,8 @@ libqpidclient_la_SOURCES = \
qpid/client/FutureResponse.cpp \
qpid/client/FutureFactory.cpp \
qpid/client/ReceivedContent.cpp \
+ qpid/client/Session.cpp \
+ qpid/client/SessionCore.cpp \
qpid/client/StateManager.cpp
@@ -319,6 +322,7 @@ nobase_include_HEADERS = \
qpid/client/ClientMessage.h \
qpid/client/ClientQueue.h \
qpid/client/Connection.h \
+ qpid/client/ConnectionImpl.h \
qpid/client/Connector.h \
qpid/client/MessageChannel.h \
qpid/client/MessageListener.h \
@@ -336,6 +340,9 @@ nobase_include_HEADERS = \
qpid/client/FutureResponse.h \
qpid/client/FutureFactory.h \
qpid/client/ReceivedContent.h \
+ qpid/client/Response.h \
+ qpid/client/Session.h \
+ qpid/client/SessionCore.h \
qpid/client/StateManager.h \
qpid/framing/AMQBody.h \
qpid/framing/AMQContentBody.h \
@@ -356,6 +363,7 @@ nobase_include_HEADERS = \
qpid/framing/HeaderProperties.h \
qpid/framing/InitiationHandler.h \
qpid/framing/InputHandler.h \
+ qpid/framing/MethodContent.h \
qpid/framing/MethodContext.h \
qpid/framing/OutputHandler.h \
qpid/framing/ProtocolInitiation.h \