summaryrefslogtreecommitdiff
path: root/gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2006-11-10 21:04:43 +0000
committerKim van der Riet <kpvdr@apache.org>2006-11-10 21:04:43 +0000
commit3b4121f6d81dd4bbf9658813931bc6791aebf2cd (patch)
treec5b428e232846dd5dfc878b4413be079343c02fa /gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl
parent150ef9fa00ab29d7bd65323d3ae62129c8fdd9e1 (diff)
downloadqpid-python-3b4121f6d81dd4bbf9658813931bc6791aebf2cd.tar.gz
Latest version of gentools. Java AmqpConstants class added which allows in changes in the <constant>
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
Diffstat (limited to 'gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl')
-rw-r--r--gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl b/gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl
index 7ecd3e0a7e..69c7fd6840 100644
--- a/gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl
+++ b/gentools/templ.cpp/AMQP_ClientProxy.cpp.tmpl
@@ -23,23 +23,23 @@
%{VLIST} * ${major}-${minor}
*/
+#include <sstream>
#include "AMQP_ClientProxy.h"
namespace qpid {
namespace framing {
-AMQP_ClientProxy::AMQP_ClientProxy(OutputHandler* _out) :
- out(_out)
-{CLIST} {cpc_constructor_initializer}
+AMQP_ClientProxy::AMQP_ClientProxy(OutputHandler* out, u_int8_t major, u_int8_t minor) :
+%{CLIST} ${cpc_constructor_initializer}
{}
// Inner class instance get methods
-{CLIST} {cpc_inner_class_get_method}
+%{CLIST} ${cpc_inner_class_get_method}
// Inner class implementation
-{CLIST} {cpc_inner_class_impl}
+%{CLIST} ${cpc_inner_class_impl}
} /* namespace framing */
} /* namespace qpid */