Menu

#6 format doxygen comments

None
open
nobody
2023-03-24
2007-03-07
No

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).

Discussion

  • Vambola Kotkas

    Vambola Kotkas - 2008-01-13

    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.

     
  • Jim Pattee

    Jim Pattee - 2018-01-27

    Ticket moved from /p/astyle/bugs/14/

     
  • James Hanley

    James Hanley - 2023-03-24

    seems like this is realted to #4

     

Log in to post a comment.

MongoDB Logo MongoDB