Nice would be options to format doxygen comments of methods and classes.
Example:
/**
*Example method description.
*@param test param description
*@return test result
*/
int testMethod(in test)
{
}
or my style
/**
*\t Example method description
*
*\t @param test param description
*\t @return test result
*/
int testMethod(in test)
{
}
or QT style
/*!
Example method description.
@param test param description
@return test result
*/
int testMethod(in test)
{
}
or Java style
/**
* Example method description.
*
* @param test param description
* @return test result
*/
int testMethod(in test)
{
}
Is there a list of planned features for version 2.0 ? I search still a possibility to insert a comment line over every method (over the method comment).
Logged In: YES
user_id=698026
Originator: NO
Seems to be a subset of 1534484.
1534484 wants them doxygen tags to be automatically generated as well. Once the tags are present then checked if valid. If present and valid then also formatted. Btw similar comment tags are used not only by doxygen. Such tasks feel to be fit for some plugin of some IDE or code editor (side-by-side with AStyle) and not inside AStyle.
Ticket moved from /p/astyle/bugs/14/
seems like this is realted to #4