C / C ++ Auto Generate Function Comments in Eclipse

This is basically a duplication of this question . However, I am looking for the same answer that will work in C / C ++ - an easy way to add comments to functions with descriptions of all parameters. It was very easy to do in SLickEdit - just press Ctrl + SHIFT + D. All the answers and methods for the above question were for Java.

Thanks.

+6
source share
1 answer

Try Doxygen.

You can configure it as follows:

Window-> Settings-> C / C ++ → Editor → "Documentation Tool"

More details:

Do oxygen eclipse plugin automatically generate stub documentation?

+9
source

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


All Articles