summaryrefslogtreecommitdiff
path: root/gentools
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-01-15 21:56:23 +0000
committerAlan Conway <aconway@apache.org>2007-01-15 21:56:23 +0000
commitef1469a7ea1f54f266aee8f2899b7cd0c7e07d08 (patch)
tree3b69ec6c589ff8edd628f2e218589180cbca005b /gentools
parent5aaad510dc978dc09f92c774c81255b7af6b8b68 (diff)
downloadqpid-python-ef1469a7ea1f54f266aee8f2899b7cd0c7e07d08.tar.gz
* Client & broker using Requester/Responder to manage request/response IDs.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@496511 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'gentools')
-rw-r--r--gentools/templ.cpp/MethodBodyClass.h.tmpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/gentools/templ.cpp/MethodBodyClass.h.tmpl b/gentools/templ.cpp/MethodBodyClass.h.tmpl
index 428f0f54b6..39f423dafb 100644
--- a/gentools/templ.cpp/MethodBodyClass.h.tmpl
+++ b/gentools/templ.cpp/MethodBodyClass.h.tmpl
@@ -69,7 +69,8 @@ ${mb_constructor_with_initializers}
inline void print(std::ostream& out) const
{
- out << "${CLASS}${METHOD}: ";
+ printPrefix(out);
+ out << "${CLASS}${METHOD}: ";
%{FLIST} ${mb_field_print}
}