views:

33

answers:

1

I am looking for some help regarding documenting code in Qt. For instance, when I am developing on the XNA platform I use XML notation with tags such as summary, params, etc. What does Qt have and what are some standards.

In addition, I am looking for something that will work with documentation generating applications (such as Doxygen), unless Qt has something better that I don't know about.

+2  A: 

Qt internally uses QDoc, which is not a supported product. It is similar to doxygen. If you already know doxygen, you should use it to document your Qt projects. Also see this question.

hmuelner