Skip to content

gmmybu/tinyjson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

tinyjson

similar to jsoncpp. https://github.com/rboulton/jsoncpp

sample: JObject obj = JObject::Deserialize("{"a":5, "b":[8, "x"]}"); int a = obj[L"a"]; wstring x = obj[L"b"][1];

Input and output are ansi or utf8 string; but JObject use unicode string.

Not support obj[L"xx"] = 8; but obj.Insert(L"xx", 8);

if you find bugs or have suggestions, please email me: [email protected]

About

convert json to handy object to read and write, and then back to json

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages