Lines Matching refs:rapidjson
1 ![](doc/logo/rapidjson.png)
11 * [RapidJSON GitHub](https://github.com/miloyip/rapidjson/)
13 * [English](http://rapidjson.org/)
14 * [简体中文](http://rapidjson.org/zh-cn/)
15 …* [GitBook](https://www.gitbook.com/book/miloyip/rapidjson/) with downloadable PDF/EPUB/MOBI, with…
23 [lin-badge]: https://travis-ci.org/miloyip/rapidjson.png?branch=master "Travis build status"
24 [lin-link]: https://travis-ci.org/miloyip/rapidjson "Travis build status"
26 [win-link]: https://ci.appveyor.com/project/miloyip/rapidjson/branch/master "AppVeyor build status"
27 [cov-badge]: https://coveralls.io/repos/miloyip/rapidjson/badge.png?branch=master
28 [cov-link]: https://coveralls.io/r/miloyip/rapidjson?branch=master
63 RapidJSON is a header-only C++ library. Just copy the `include/rapidjson` folder to system or proje…
73 2. Create directory called `build` in rapidjson source directory.
94 // rapidjson/example/simpledom/simpledom.cpp`
95 #include "rapidjson/document.h"
96 #include "rapidjson/writer.h"
97 #include "rapidjson/stringbuffer.h"
100 using namespace rapidjson;
104 const char* json = "{\"project\":\"rapidjson\",\"stars\":10}";
117 // Output {"project":"rapidjson","stars":11}
129 More [examples](https://github.com/miloyip/rapidjson/tree/master/example) are available.