Details
-
Type:
Suggestion
-
Status: Closed
-
Priority:
P3: Somewhat important
-
Resolution: Done
-
Affects Version/s: Qt Creator 2.8.0-beta
-
Fix Version/s: Qt Creator 6.0.0-beta2
-
Component/s: C/C++/Obj-C++ Support
-
Labels:None
-
Commits:a437539096e8d5e4a49101f5d05774667089dc0d (qt-creator/qt-creator/6.0)
Description
When you type /*! before a class definition and press enter a doxygen comment, with a default \brief line, is generated.
If it is a template class the \brief line is omitted.
/*!
* \brief The Test class
*/
class Test {};
/*!
*
*/
template <typename T>
class Test {};