Implement JSON

This commit is contained in:
2025-04-08 22:00:31 -05:00
parent 121564335f
commit 0e202ce89d
5 changed files with 760 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#include "TessesFramework/Serialization/Json.hpp"
using namespace Tesses::Framework::Serialization::Json;
int main(int argc, char** argv)
{
auto json = Json::Decode("\"\\uD83D\\uDE44\"");
std::string str;
if(TryGetJToken(json,str))
{
std::cout << str << std::endl;
}
}