C ++ comments for functions in Qt creator

How can I comment on C ++ functions in the Qt creator so that when I hover over a function call of this function, I can see the documentation as a hint.

Just like we do / ** newline Eclipse automatically creates a comment block. I am looking for the same in Qt creator, please report.

+5
source share
1 answer

You are probably looking for something like doxygen .

Here are instructions for use with Qt Creator.

+7
source

All Articles