#pragma once #include #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