#ifndef XMLRPC_BASE64_HPP_INCLUDED #define XMLRPC_BASE64_HPP_INCLUDED #include #include #include /* XMLRPC_LIBUTILPP_EXPORTED marks a symbol in this file that is exported from libxmlrpc_util++. XMLRPC_BUILDING_LIBUTILPP says this compilation is part of libxmlrpc_util++, as opposed to something that _uses_ libxmlrpc_util++. */ #ifdef XMLRPC_BUILDING_LIBUTILPP #define XMLRPC_LIBUTILPP_EXPORTED XMLRPC_DLLEXPORT #else #define XMLRPC_LIBUTILPP_EXPORTED #endif namespace xmlrpc_c { enum newlineCtl {NEWLINE_NO, NEWLINE_YES}; XMLRPC_LIBUTILPP_EXPORTED std::string base64FromBytes( std::vector const& bytes, xmlrpc_c::newlineCtl const newlineCtl = xmlrpc_c::NEWLINE_YES); XMLRPC_LIBUTILPP_EXPORTED std::vector bytesFromBase64(std::string const& base64); } // namespace #endif