diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
commit | 8ff7c2608eb845c3b6b637f4648ae726a11a158b (patch) | |
tree | f1dfb4d3a63752357480561fdd94f37692d8eb47 /cppe/src/IceE/StringUtil.cpp | |
parent | fix some recent changes to build in J2ME (diff) | |
download | ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.bz2 ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.xz ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.zip |
Put back IceUtil namespace
Diffstat (limited to 'cppe/src/IceE/StringUtil.cpp')
-rw-r--r-- | cppe/src/IceE/StringUtil.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/src/IceE/StringUtil.cpp b/cppe/src/IceE/StringUtil.cpp index 82582590066..26ba08c66ec 100644 --- a/cppe/src/IceE/StringUtil.cpp +++ b/cppe/src/IceE/StringUtil.cpp @@ -109,7 +109,7 @@ escapeChar(string::value_type b, string& s, const string& special) } string -Ice::escapeString(const string& s, const string& special) +IceUtil::escapeString(const string& s, const string& special) { string result; result.reserve(s.size()); @@ -123,7 +123,7 @@ Ice::escapeString(const string& s, const string& special) } bool -Ice::unescapeString(const string& s, string::size_type start, string::size_type end, string& result) +IceUtil::unescapeString(const string& s, string::size_type start, string::size_type end, string& result) { assert(end <= s.size()); assert(start <= end); @@ -236,7 +236,7 @@ Ice::unescapeString(const string& s, string::size_type start, string::size_type // If no matching closing quote is found, then -1 is returned. // string::size_type -Ice::checkQuote(const string& s, string::size_type start) +IceUtil::checkQuote(const string& s, string::size_type start) { string::value_type quoteChar = s[start]; if(quoteChar == '"' || quoteChar == '\'') @@ -263,7 +263,7 @@ Ice::checkQuote(const string& s, string::size_type start) // it's portable across platforms (whereas regex() isn't). // bool -Ice::match(const string& s, const string& pat, bool matchPeriod) +IceUtil::match(const string& s, const string& pat, bool matchPeriod) { assert(!s.empty()); assert(!pat.empty()); |