Qt documentation standards

I am looking for some help regarding documenting code in Qt. For example, when I develop the XNA platform, I use XML notation with tags such as summary, options, etc. What is Qt and what are the standards.

Also, I'm looking for something that will work with documentation authoring applications (such as Doxygen) if Qt doesn't have something better that I don't know about.

+3
source share
1 answer

Qt internally uses QDoc , which is not a supported product. This is similar to doxygen. If you already know doxygen, you should use it to document your Qt projects. See also question .

+4
source

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


All Articles