From 447c941935ae75a91093e5b49f05a40cc188ab60 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Mon, 31 Aug 2009 22:43:29 +0000 Subject: Changes to make messaging API build on Windows: Prepend VAR_ to Variant types enum to avoid name clashes, add 'reference' type for FieldTable ValueMap to satisfy STL, refer to structs as such, not as class (avoids compile warning) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@809772 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/include/qpid/messaging/Message.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/include/qpid/messaging/Message.h') diff --git a/cpp/include/qpid/messaging/Message.h b/cpp/include/qpid/messaging/Message.h index 329388048e..e68d8a1141 100644 --- a/cpp/include/qpid/messaging/Message.h +++ b/cpp/include/qpid/messaging/Message.h @@ -33,9 +33,9 @@ namespace client { namespace messaging { -class Address; +struct Address; class Codec; -class MessageImpl; +struct MessageImpl; /** * Representation of a message. @@ -81,7 +81,7 @@ class Message private: MessageImpl* impl; - friend class MessageImplAccess; + friend struct MessageImplAccess; }; }} // namespace qpid::messaging -- cgit v1.2.1