Files
GTASource/rage/3rdparty/libjson_7.4.1/libjson/Source/JSON_Base64.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

18 lines
442 B
C++

#ifndef JSON_BASE64_H
#define JSON_BASE64_H
#include "JSONDebug.h"
#if defined(JSON_BINARY) || defined(JSON_EXPOSE_BASE64) //if this is not needed, don't waste space compiling it
#include <string>
class JSONBase64 {
public:
static json_string json_encode64(const unsigned char * binary, size_t bytes) json_nothrow json_cold;
static std::string json_decode64(const json_string & encoded) json_nothrow json_cold;
};
#endif
#endif