Jul 5, 2022 at 5:41pm
What are the common documentation standards for most companies that primarily use C++?
I'd like to publish a library as open source.
Last edited on Jul 6, 2022 at 12:28pm
Jul 5, 2022 at 8:07pm
Generating documentation from code annotations is the way to go, I think.
Doxygen is the "de facto" standard for generating documentation from C++ code annotations:
https://doxygen.nl/
Works pretty much like Javadoc in the Java world.
Last edited on Jul 5, 2022 at 9:45pm
Jul 6, 2022 at 12:27pm
Cubbi, kigar64551, thank you both. I will go with doxygen.
Last edited on Jul 6, 2022 at 12:29pm