Mercurial > hg > orthanc
view Resources/ThirdParty/base64/base64.h @ 3671:3c4269229566
Added functions to retrieve min and max possible values for floating-point pixels
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Fri, 14 Feb 2020 14:56:06 +0100 |
parents | 2e7c5c15ba25 |
children |
line wrap: on
line source
#include <string> void base64_encode(std::string& result, const std::string& stringToEncode); void base64_decode(std::string& result, const std::string& s);