1 2 3 4 5 6 7 8 9 10 11 12
#pragma once #include <string> #define EXPORT __attribute__((visibility("default"))) namespace Reichwein::Base64 { EXPORT std::string decode64(const std::string &val); EXPORT std::string encode64(const std::string &val); } // namespace