summaryrefslogtreecommitdiff
path: root/qpid/gentools/templ.cpp/AMQP_ServerProxy.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
commite50fb5c60c46f01e1d8b9d97506f37c4dfb3a5ba (patch)
tree6868459431ba0f495181e92d1573ef899f0c56df /qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl
parent821719b8e080adefa456d36d629be16d65b25c60 (diff)
downloadqpid-python-e50fb5c60c46f01e1d8b9d97506f37c4dfb3a5ba.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@473472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl')
-rw-r--r--qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl b/qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl
index 8996f4a41c..0855bc2026 100644
--- a/qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl
+++ b/qpid/gentools/templ.cpp/AMQP_ServerProxy.cpp.tmpl
@@ -23,23 +23,23 @@
%{VLIST} * ${major}-${minor}
*/
+#include <sstream>
#include "AMQP_ServerProxy.h"
namespace qpid {
namespace framing {
-AMQP_ServerProxy::AMQP_ServerProxy(OutputHandler* _out) :
- out(_out)
-{CLIST} {spc_constructor_initializer}
+AMQP_ServerProxy::AMQP_ServerProxy(OutputHandler* out, u_int8_t major, u_int8_t minor) :
+%{CLIST} ${spc_constructor_initializer}
{}
// Inner class instance get methods
-{CLIST} {spc_inner_class_get_method}
+%{CLIST} ${spc_inner_class_get_method}
// Inner class implementation
-{CLIST} {spc_inner_class_impl}
+%{CLIST} ${spc_inner_class_impl}
} /* namespace framing */
} /* namespace qpid */