forked from qt-creator/qt-creator
C++: Improved automatic Doxygen comment blocks with CppStyle
Added support for CppStyle for Doxygen block generation when hitting enter after a /// or //! comment. Previously only QtStyle and JavaStyle was supported. Change-Id: Ib010e55ba602127a6842ba02034fbe85994ee2bd Reviewed-by: David Schulz <david.schulz@digia.com>
This commit is contained in:
committed by
David Schulz
parent
8d2f406092
commit
c937226db1
@@ -49,8 +49,10 @@ public:
|
||||
DoxygenGenerator();
|
||||
|
||||
enum DocumentationStyle {
|
||||
JavaStyle,
|
||||
QtStyle
|
||||
JavaStyle, ///< JavaStyle comment: /**
|
||||
QtStyle, ///< QtStyle comment: /*!
|
||||
CppStyleA, ///< CppStyle comment variant A: ///
|
||||
CppStyleB ///< CppStyle comment variant B: //!
|
||||
};
|
||||
|
||||
void setStyle(DocumentationStyle style);
|
||||
|
||||
Reference in New Issue
Block a user