HELP - ingroupCmd
HelpCommand ReferenceingroupCmd
Description  
Add this entity to a group.
This command is used in the documentation block of any entity to designate a group it should be a meber of. It's possible to add an etity to more than one group.

Syntax:
\ingroup MyGroup
\ingroup "Group name with spaces"

See also
  • defgroupCmd, inthisgroupCmd
  • Examples
    /**
    \defgroup "Util Functions"
    Group of utility functions.
    The utility functions ... bla bla ...
    */
    
    /**
    \defgroup "Other Functions"
    Group of other functions.
    The other functions ... bla bla ...
    */
    
    /**
    Brief description utilFun1.
    Group of utility functions.
    The utilFun1 ... bla bla ...
    \ingroup "Util Functions"
    void utilFun1();
    */
    
    /**
    Brief description utilFun2.
    Group of utility functions.
    The utilFun2 ... bla bla ...
    \ingroup "Util Functions"
    \ingroup "Other Functions"
    void utilFun2();
    */