*** empty log message ***

svn path=/trunk/boinc/; revision=2719
This commit is contained in:
Karl Chen 2003-11-29 12:33:24 +00:00
parent e4eb519f80
commit 9873724b61
1 changed files with 4 additions and 0 deletions

View File

@ -48,4 +48,8 @@ class InvalidBase64Exception
string base64_encode (const char* from, size_t length) throw(InvalidBase64Exception);
string base64_decode (const char* from, size_t length) throw(InvalidBase64Exception);
inlie string base64_decode (string const& from) throw(InvalidBase64Exception)
{
return base64_decode(from.c_str(), from.length());
}