You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2006/12/19 21:32:55 UTC

svn commit: r488801 - in /incubator/qpid/trunk/qpid/gentools/templ.cpp: AMQP_ClientProxy.h.tmpl AMQP_ServerProxy.h.tmpl MethodBodyClass.h.tmpl

Author: kpvdr
Date: Tue Dec 19 12:32:54 2006
New Revision: 488801

URL: http://svn.apache.org/viewvc?view=rev&rev=488801
Log:
[For Andrew Stitcher] Made the generator generate non-virtual inheritance; it doesn't create a noticeable speed up in itself, but it's not needed where it's used.

Modified:
    incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl
    incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl
    incubator/qpid/trunk/qpid/gentools/templ.cpp/MethodBodyClass.h.tmpl

Modified: incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl?view=diff&rev=488801&r1=488800&r2=488801
==============================================================================
--- incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl (original)
+++ incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl Tue Dec 19 12:32:54 2006
@@ -36,7 +36,7 @@
 namespace qpid {
 namespace framing {
 
-class AMQP_ClientProxy : virtual public AMQP_ClientOperations
+class AMQP_ClientProxy : public AMQP_ClientOperations
 {
 private:
     OutputHandler* out;

Modified: incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl?view=diff&rev=488801&r1=488800&r2=488801
==============================================================================
--- incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl (original)
+++ incubator/qpid/trunk/qpid/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl Tue Dec 19 12:32:54 2006
@@ -36,7 +36,7 @@
 namespace qpid {
 namespace framing {
 
-class AMQP_ServerProxy : virtual public AMQP_ServerOperations
+class AMQP_ServerProxy : public AMQP_ServerOperations
 {
 private:
     OutputHandler* out;

Modified: incubator/qpid/trunk/qpid/gentools/templ.cpp/MethodBodyClass.h.tmpl
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/gentools/templ.cpp/MethodBodyClass.h.tmpl?view=diff&rev=488801&r1=488800&r2=488801
==============================================================================
--- incubator/qpid/trunk/qpid/gentools/templ.cpp/MethodBodyClass.h.tmpl (original)
+++ incubator/qpid/trunk/qpid/gentools/templ.cpp/MethodBodyClass.h.tmpl Tue Dec 19 12:32:54 2006
@@ -43,7 +43,7 @@
 {
 ${version_namespace_start}
  
-class ${CLASS}${METHOD}Body : virtual public AMQMethodBody
+class ${CLASS}${METHOD}Body : public AMQMethodBody
 {
 	// Method field declarations