Qt uses Doxygen Special Commands in it code comments. [Well, to be precise, Doxygen extends the Qt special comment commands.] Special commands are used to control the creation of documentation when it is executed in code. Trolls that have Qt have their own tool, which they use to create documents from code. Doxygen was written to give us a mere mortal tool that we could use.
One of the things you can do with Doxygen (and I assume the Qt tool) includes example code in the documentation. Often only a part of the code is required, so there are some special commands that can be used to control which part of the file is displayed (for example, \line ). They rely on finding markers in code. IMHO, // [xx] - these are just these markers.
source share