├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore lib folder 2 | lib* 3 | # ignore object files 4 | *.o 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DEPRECATED 2 | 3 | ## What? 4 | I used this as a git import back when the original project was on subversion. 5 | This was never intended to be a fork and since now the project is on GitHub, 6 | please use it, it's awesome: 7 | 8 | ## [https://github.com/open-source-parsers/jsoncpp](https://github.com/open-source-parsers/jsoncpp) 9 | --------------------------------------------------------------------------------