From 3b4121f6d81dd4bbf9658813931bc6791aebf2cd Mon Sep 17 00:00:00 2001 From: Kim van der Riet Date: Fri, 10 Nov 2006 21:04:43 +0000 Subject: Latest version of gentools. Java AmqpConstants class added which allows in changes in the declarations in spec from version to version. C++ AMQP_Constants.h file still incomplete. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@473472 13f79535-47bb-0310-9956-ffa450edef68 --- gentools/templ.cpp/AMQP_ClientProxy.h.tmpl | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'gentools/templ.cpp/AMQP_ClientProxy.h.tmpl') diff --git a/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl b/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl index 82ba5391d5..15610ad438 100644 --- a/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl +++ b/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl @@ -35,17 +35,26 @@ namespace framing { class AMQP_ClientProxy : virtual public AMQP_ClientOperations { - public: - AMQP_ClientProxy(OutputHandler* _out); - virtual ~AMQP_ClientProxy() {}; +private: + OutputHandler* out; + u_int8_t major; + u_int8_t minor; // Inner class instances -{CLIST} {cph_inner_class_get_method} +%{CLIST} ${cph_inner_class_instance} + +public: + AMQP_ClientProxy(OutputHandler* out, u_int8_t major, u_int8_t minor); + virtual ~AMQP_ClientProxy() {} + + // Inner class instance get methods + +%{CLIST} ${cph_inner_class_get_method} // Inner class definitions -{CLIST} {cph_inner_class_impl} +%{CLIST} ${cph_inner_class_defn} }; /* class AMQP_ClientProxy */ -- cgit v1.2.1