You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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:
/**
*/
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 :
/*
/**
*/
void class::function(param) {
}
*/
The text was updated successfully, but these errors were encountered: