Reputation: 7176
I'm searching some plugin for eclipse CDT similar to Atomineer utils. This tool would know / read a method signature (or a class or a property) in c++, read method name and parameters and insert the skeleton of the comment block.
Does exists this tool?
Thanks
Upvotes: 2
Views: 3178
Reputation: 25483
You can use Doxygen for that purpose. CDT has a little support of Doxygen-style documenting, particularly it can generate skeleton comments for functions.
To enable it proceed through Window -> Preferences -> C/C++ -> Editor and select Doxygen in Documentation tool comments.
Upvotes: 2