From 42c59ff146df419e273b5efa923eac9114f78bf6 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 26 Aug 2011 22:16:01 +0000 Subject: QPID-3457: qpid::Msg::str() method not exported Previous fix was incomplete. The class Msg is used by Variant.cpp in the types library. Moved the Msg class from common to types library. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1162273 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/include/qpid/Msg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/include') diff --git a/cpp/include/qpid/Msg.h b/cpp/include/qpid/Msg.h index 5a55be28db..7a39a41c8d 100644 --- a/cpp/include/qpid/Msg.h +++ b/cpp/include/qpid/Msg.h @@ -24,7 +24,7 @@ #include #include -#include "qpid/CommonImportExport.h" +#include "qpid/types/ImportExport.h" namespace qpid { @@ -42,7 +42,7 @@ struct Msg { std::ostringstream os; Msg() {} Msg(const Msg& m) : os(m.str()) {} - QPID_COMMON_EXTERN std::string str() const; + QPID_TYPES_EXTERN std::string str() const; operator std::string() const { return str(); } Msg& operator<<(long n) { os << n; return *this; } -- cgit v1.2.1