diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
commit | 3030ac8c355435c4426c82019669c476f5c76088 (patch) | |
tree | c57f7c0a983c44847f93285f0676df49f21707b9 /cppe/src/IceE/StringUtil.cpp | |
parent | Use direct proxy for process object instead of indirect proxy (diff) | |
download | ice-3030ac8c355435c4426c82019669c476f5c76088.tar.bz2 ice-3030ac8c355435c4426c82019669c476f5c76088.tar.xz ice-3030ac8c355435c4426c82019669c476f5c76088.zip |
Renamed namespace back to Ice
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 165925845a5..82582590066 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 -IceE::escapeString(const string& s, const string& special) +Ice::escapeString(const string& s, const string& special) { string result; result.reserve(s.size()); @@ -123,7 +123,7 @@ IceE::escapeString(const string& s, const string& special) } bool -IceE::unescapeString(const string& s, string::size_type start, string::size_type end, string& result) +Ice::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 @@ IceE::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 -IceE::checkQuote(const string& s, string::size_type start) +Ice::checkQuote(const string& s, string::size_type start) { string::value_type quoteChar = s[start]; if(quoteChar == '"' || quoteChar == '\'') @@ -263,7 +263,7 @@ IceE::checkQuote(const string& s, string::size_type start) // it's portable across platforms (whereas regex() isn't). // bool -IceE::match(const string& s, const string& pat, bool matchPeriod) +Ice::match(const string& s, const string& pat, bool matchPeriod) { assert(!s.empty()); assert(!pat.empty()); |