Ahmed
Ahmed

Reputation: 15069

C++ comments for functions in Qt creator

How can I comment C++ functions in Qt creator so that when I hover over a function call to that function I may see the documentation as a tool tip.

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

Upvotes: 6

Views: 4623

Answers (1)

houbysoft
houbysoft

Reputation: 33410

You are probably looking for something like doxygen.

Here are instructions for using it with Qt Creator.

Upvotes: 7

Related Questions