Why are comments that start with "//!" colored blue in Qt Creator?
comments, qt-creator
Solution
It's a Doxygen comment.
There are multiple styles:
Qt block comment:
/*!
... text ...
*/
Qt one-line comment:
//! ... one line of text ...
JavaDoc block comment:
/**
* ... text ...
*/
JavaDoc one-line comment:
/// ... one line of text ...
Problem
Qt Creator normally colors comments green, but I saw blue colored comments in the Qt Examples, and Qt Creator seems to color every comment that starts with `//!` in blue. Here's an example screenshot: Is this some convention? What does the blue signify?