diff options
author | Marc Laukien <marc@zeroc.com> | 2004-04-09 19:37:40 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-04-09 19:37:40 +0000 |
commit | d0215f418b82139b9aa0793399bb2bfbf4b1e4c1 (patch) | |
tree | 6999aa0651e7f8a9756593c7cf20928d58db6981 /cpp/include/IceUtil/StringUtil.h | |
parent | fixing object marshaling (diff) | |
download | ice-d0215f418b82139b9aa0793399bb2bfbf4b1e4c1.tar.bz2 ice-d0215f418b82139b9aa0793399bb2bfbf4b1e4c1.tar.xz ice-d0215f418b82139b9aa0793399bb2bfbf4b1e4c1.zip |
fix
Diffstat (limited to 'cpp/include/IceUtil/StringUtil.h')
-rw-r--r-- | cpp/include/IceUtil/StringUtil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/IceUtil/StringUtil.h b/cpp/include/IceUtil/StringUtil.h index 6959020e8b7..9c7f05c0d9c 100644 --- a/cpp/include/IceUtil/StringUtil.h +++ b/cpp/include/IceUtil/StringUtil.h @@ -24,12 +24,12 @@ namespace IceUtil // Add escape sequences (like "\n", or "\0xxx") to make a string // readable in ASCII. // -std::string escapeString(const std::string&, const std::string&); +ICE_UTIL_API std::string escapeString(const std::string&, const std::string&); // // Remove escape sequences added by escapeString. // -bool unescapeString(const std::string&, std::string::size_type, std::string::size_type, std::string&); +ICE_UTIL_API bool unescapeString(const std::string&, std::string::size_type, std::string::size_type, std::string&); // // If a single or double quotation mark is found at the start @@ -38,7 +38,7 @@ bool unescapeString(const std::string&, std::string::size_type, std::string::siz // 0 is returned. If no matching closing quote is found, then // std::string::npos is returned. // -std::string::size_type checkQuote(const std::string&, std::string::size_type = 0); +ICE_UTIL_API std::string::size_type checkQuote(const std::string&, std::string::size_type = 0); } |