Skip to content

davemor/jsonlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Json Lib

Json Lib is a light weight (2 files) parser for [Json] (http://www.json.org/). It generates a tree of values and returns a std::unique_ptr to the root of the tree.

For Example:

Json::UniqueValue val = Json::parse("{\"key0\":\"a string one\",\"key1\":\"a string two\"}");

std::string one = val->get("key0");
std::string two = val->get("key1");

This project is not ment for commercial use. It's just a hobby project and has a couple of known flaws.

The API is loosely based on the much more mature [JsonCpp] (http://jsoncpp.sourceforge.net/) and I would recommend that as the best Json parser for C++.

About

Lightweight Json Parser for C++.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages