Author: tabish
Date: Sat Mar 3 13:11:42 2007
New Revision: 514242
URL: http://svn.apache.org/viewvc?view=rev&rev=514242
Log:
http://issues.apache.org/activemq/browse/AMQCPP-30
Fixing message so that they properly define the isMarshalAware method.
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/ActiveMQMessageBase.h
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/WireFormatInfo.h
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/ActiveMQMessageBase.h
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/ActiveMQMessageBase.h?view=diff&rev=514242&r1=514241&r2=514242
==============================================================================
---
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/ActiveMQMessageBase.h
(original)
+++
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/ActiveMQMessageBase.h
Sat Mar 3 13:11:42 2007
@@ -65,7 +65,7 @@
* to have its Marshalling methods invoked.
* @returns boolean indicating desire to be in marshalling stages
*/
- virtual bool IsMarshallAware() {
+ virtual bool isMarshalAware() const {
return true;
}
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/WireFormatInfo.h
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/WireFormatInfo.h?view=diff&rev=514242&r1=514241&r2=514242
==============================================================================
---
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/WireFormatInfo.h
(original)
+++
activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/WireFormatInfo.h
Sat Mar 3 13:11:42 2007
@@ -82,7 +82,7 @@
* to have its Marshalling methods invoked.
* @returns boolean indicating desire to be in marshalling stages
*/
- virtual bool IsMarshallAware() {
+ virtual bool isMarshalAware() const {
return true;
}