From e652a49cbac1098dd97695309336545ef4e9ae89 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 23 Jun 2017 14:31:26 +0200 Subject: Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization --- libbutl/base64.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libbutl/base64.hxx') diff --git a/libbutl/base64.hxx b/libbutl/base64.hxx index 29c6198..748dcfa 100644 --- a/libbutl/base64.hxx +++ b/libbutl/base64.hxx @@ -20,13 +20,13 @@ namespace butl // if it has badbit, failbit, or eofbit set and throw invalid_argument if // that's the case. Otherwise set badbit if the write operation fails. // - LIBBUTL_EXPORT void + LIBBUTL_SYMEXPORT void base64_encode (std::ostream&, std::istream&); - LIBBUTL_EXPORT std::string + LIBBUTL_SYMEXPORT std::string base64_encode (std::istream&); - LIBBUTL_EXPORT std::string + LIBBUTL_SYMEXPORT std::string base64_encode (const std::vector&); // Base64-decode a stream or a string. Throw invalid_argument if the input @@ -37,13 +37,13 @@ namespace butl // invalid_argument if that's the case. Otherwise set badbit if the write // operation fails. // - LIBBUTL_EXPORT void + LIBBUTL_SYMEXPORT void base64_decode (std::ostream&, std::istream&); - LIBBUTL_EXPORT void + LIBBUTL_SYMEXPORT void base64_decode (std::ostream&, const std::string&); - LIBBUTL_EXPORT std::vector + LIBBUTL_SYMEXPORT std::vector base64_decode (const std::string&); } -- cgit v1.1