API documentation for yaml-cpp library

I decided to use the yaml-cpp v0.3 library to parse the configuration file for my FOSS daemon. I decided to migrate to the new API 0.5, but my biggest problem so far is that there seems to be no proper documentation besides this:

https://github.com/jbeder/yaml-cpp/wiki/Tutorial

... and some third-party tutorials that are nice as an introduction, but there are no Doxygen comments in the yaml-cpp source code. Is there a Doxygen review somewhere, like an API? I really like this new API, but the lack of documentation makes tedious work unnecessary.

+5
source share
1 answer

There is a doxygen build here:

https://codedocs.xyz/jbeder/yaml-cpp/index.html

This is an official post and is linked to the github editor-in-chief. The code seems to be intentionally free from comments, but it may be easier to use than viewing the header files themselves.

+1
source

Source: https://habr.com/ru/post/1247232/


All Articles