DoxyDoc
DoxyDoc copied to clipboard
Feature Request: Comment Style Preference
It would be great if you could add a user option to choose the kind of comment style to use for the Doxygen comments.
The two options would be: /**
- @brief
- @detail */
OR
// /// @brief /// @detail //
The problem with the first style is when you try to comment a function along with the documented block, it doesn't work as expected : /*
/**
- @brief
- @detail */
void class::function(param) { }
*/
:+1:
DoxyDoxygen is an alternative to DoxyDoc and it allow to choose your commenting style (and even more)...
This will unfortunatly probably not help to solve your use case... I'm not sure have correctly understand it: You really to comment a "comment" (that look like a function) ?
With DoxyDoxygen, want I want to update an existing comment, I simply press Alt+Q. Your example
///
/// blabla
///
void class_name::function(int param) {
}
after update, will result:
///
/// blabla
///
/// @param[in] param { parameter_description }
///
void class_name::function(int param) {
}