vscode-cpptools icon indicating copy to clipboard operation
vscode-cpptools copied to clipboard

doxygen member groups support (///@{ ///@})

Open myocytebd opened this issue 11 months ago • 2 comments

Feature Request

doxygen Member Groups can populate some doc to every member of the group, and have a group name and group description. https://www.doxygen.nl/manual/grouping.html#memgroup

    ///@{
    /** Same documentation for both members. Details */
    void func1InGroup1();
    void func2InGroup1();
    ///@}
/** @name Group2
 *  Description of group 2. 
 */
///@{
/** Function 2 in group 2. Details. */
void Memgrp_Test::func2InGroup2() {}
/** Function 1 in group 2. Details. */
void Memgrp_Test::func1InGroup2() {}
///@}

Member Groups is used in some popular libraries, e.g. libstdc++, llvm, ffmpeg headers.

Currently, cpptools doesn't recognize @{ patterns and treats them as regular comments.

myocytebd avatar Dec 28 '24 06:12 myocytebd

This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog.

github-actions[bot] avatar Mar 01 '25 11:03 github-actions[bot]

This feature request has received enough votes to be added to our backlog.

github-actions[bot] avatar Jun 01 '25 12:06 github-actions[bot]