I have a Rest API in C ++, ready and working correctly. It is not simple, with many files (.hpp, .cpp, .h etc.) plus many libraries and dependencies However, I would like to know if there is any way to do the automatic documentation of this API, so that the new features added will also be documented automatically.
As a result of my research, the solution would be to use the Oat++ (oatpp) template, as in this example (available on this Medium post), but for that I should modify the existing code, which I don't want to do (since I am not the author). Has anyone been through something similar and could help me?