https://github.com/usagi/json11.hxx
json11.hxx is C++ header-only version of dropbox/json11 JSON library and generator.
https://github.com/usagi/json11.hxx
Last synced: 3 months ago
JSON representation
json11.hxx is C++ header-only version of dropbox/json11 JSON library and generator.
- Host: GitHub
- URL: https://github.com/usagi/json11.hxx
- Owner: usagi
- License: mit
- Created: 2014-04-21T15:39:56.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-21T15:44:44.000Z (about 11 years ago)
- Last Synced: 2025-01-13T11:11:23.921Z (5 months ago)
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# json11.hxx
json11.hxx is C++ header-only version
of [json11](https://github.com/dropbox/json11) JSON library
and generator.## how to use
prepare:
add include path `include`
or create sym-link from `include/json.hxx` to any your include path
(e.g. ~/opt/include/json11.hxx --> ...(this repos dir).../include/json11.hxx ).use:
```C++
#include // <-- note: it's not .hpp.// and your code with json11.
```
more info,
to see the [json11 README](https://github.com/dropbox/json11#json11)
if you need.## how to generate myself
1. `git submodule init` or `git submodule update`
2. `./generator.sh` in repos root dir.## license
[MIT](LICENSE)
Note: [json11](https://github.com/dropbox/json11) license
is [hare](https://github.com/dropbox/json11/blob/master/LICENSE.txt).## author
Usagi Ito