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
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
Cubbi, kigar64551, thank you both. I will go with doxygen.
Last edited on