#ifndef XMLRPC_BASE64_HPP_INCLUDED #define XMLRPC_BASE64_HPP_INCLUDED #include #include #include namespace xmlrpc_c { enum newlineCtl {NEWLINE_NO, NEWLINE_YES}; XMLRPC_DLLEXPORT std::string base64FromBytes( std::vector const& bytes, xmlrpc_c::newlineCtl const newlineCtl = xmlrpc_c::NEWLINE_YES); XMLRPC_DLLEXPORT std::vector bytesFromBase64(std::string const& base64); } // namespace #endif