diff options
author | Marc Laukien <marc@zeroc.com> | 2002-08-03 16:01:16 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-08-03 16:01:16 +0000 |
commit | 36a3cf433428c55052884a6926dd7b0c10cdb086 (patch) | |
tree | d7ab46d883c19ac1ad30d81d8b1b1557a2a9a890 /cpp/src/IceUtil/Base64.cpp | |
parent | minor (diff) | |
download | ice-36a3cf433428c55052884a6926dd7b0c10cdb086.tar.bz2 ice-36a3cf433428c55052884a6926dd7b0c10cdb086.tar.xz ice-36a3cf433428c55052884a6926dd7b0c10cdb086.zip |
fixes
Diffstat (limited to 'cpp/src/IceUtil/Base64.cpp')
-rw-r--r-- | cpp/src/IceUtil/Base64.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceUtil/Base64.cpp b/cpp/src/IceUtil/Base64.cpp index e3036f94ba0..00ef4d55a68 100644 --- a/cpp/src/IceUtil/Base64.cpp +++ b/cpp/src/IceUtil/Base64.cpp @@ -14,7 +14,7 @@ using namespace std; string -IceUtil::Base64::encode(const ByteSeq& plainSeq) +IceUtil::Base64::encode(const vector<char>& plainSeq) { string retval; @@ -97,7 +97,7 @@ IceUtil::Base64::encode(const ByteSeq& plainSeq) return outString; } -IceUtil::ByteSeq +vector<char> IceUtil::Base64::decode(const string& str) { string newStr; @@ -112,7 +112,7 @@ IceUtil::Base64::decode(const string& str) } } - ByteSeq retval; + vector<char> retval; if(newStr.length() == 0) { |