From 0398410e8894287da530cfb63d6344817445bfc2 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Thu, 12 Mar 2009 20:55:34 +0000 Subject: Changes to build DLLs instead of static libs on Windows; primarily added decorators to exported names. Fixes QPID-1673 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@753014 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/StringUtils.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/StringUtils.h') diff --git a/cpp/src/qpid/StringUtils.h b/cpp/src/qpid/StringUtils.h index 3120e43334..4130fae017 100644 --- a/cpp/src/qpid/StringUtils.h +++ b/cpp/src/qpid/StringUtils.h @@ -22,6 +22,8 @@ * */ +#include "qpid/CommonImportExport.h" + #include #include @@ -31,12 +33,12 @@ namespace qpid { * Split 'in' into words using delimiters in 'delims' and put * resulting strings into 'out' vector. */ -void split(std::vector& out, const std::string& in, const std::string& delims); +QPID_COMMON_EXTERN void split(std::vector& out, const std::string& in, const std::string& delims); /** * Split 'in' into words using delimiters in 'delims' and return the * resulting strings in a vector. */ -std::vector split(const std::string& in, const std::string& delims); +QPID_COMMON_EXTERN std::vector split(const std::string& in, const std::string& delims); } // namespace qpid -- cgit v1.2.1