aboutsummaryrefslogtreecommitdiff
path: root/libbutl/base64.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-06-23 14:31:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-06-23 14:31:26 +0200
commite652a49cbac1098dd97695309336545ef4e9ae89 (patch)
tree1af0a5270d06e05e788c1342e1cc35723106b7ec /libbutl/base64.hxx
parentc36042925c8d52e3899ea310018cb7243d191306 (diff)
Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization
Diffstat (limited to 'libbutl/base64.hxx')
-rw-r--r--libbutl/base64.hxx12
1 files changed, 6 insertions, 6 deletions
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<char>&);
// 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<char>
+ LIBBUTL_SYMEXPORT std::vector<char>
base64_decode (const std::string&);
}