Author: cctrieloff
Date: Tue Jan 9 11:04:18 2007
New Revision: 494525
URL: http://svn.apache.org/viewvc?view=rev&rev=494525
Log:
part 2 from andrew, issued commit at wrong level. This change requires a
./bootstap
Modified:
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.cpp.tmpl
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.h.tmpl
Modified:
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.cpp.tmpl
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.cpp.tmpl?view=diff&rev=494525&r1=494524&r2=494525
==============================================================================
---
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.cpp.tmpl
(original)
+++
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.cpp.tmpl
Tue Jan 9 11:04:18 2007
@@ -35,7 +35,7 @@
namespace framing
{
-AMQP_MethodVersionMap::AMQP_MethodVersionMap(u_int8_t major, u_int8_t minor):
version(major, minor)
+AMQP_MethodVersionMap::AMQP_MethodVersionMap()
{
%{CLIST} ${mc_create_method_body_map_entry}
}
Modified:
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.h.tmpl
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.h.tmpl?view=diff&rev=494525&r1=494524&r2=494525
==============================================================================
---
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.h.tmpl
(original)
+++
incubator/qpid/branches/qpid.0-9/gentools/templ.cpp/AMQP_MethodVersionMap.h.tmpl
Tue Jan 9 11:04:18 2007
@@ -45,10 +45,9 @@
class AMQP_MethodVersionMap: public std::map<u_int64_t, fnPtr>
{
protected:
- ProtocolVersion version;
u_int64_t createMapKey(u_int16_t classId, u_int16_t methodId, u_int8_t
major, u_int8_t minor);
public:
- AMQP_MethodVersionMap(u_int8_t major, u_int8_t minor);
+ AMQP_MethodVersionMap();
AMQMethodBody* createMethodBody(u_int16_t classId, u_int16_t methodId,
u_int8_t major, u_int8_t minor);
};