If I have the following:
/**
* @brief (x,y,z) points for block
*/
int x, y, z;
It will only generate that documentation for x, is it possible in doxygen to get it to comment all x, y and z with one comment?
EDIT Following the suggestions of envu I now have the following (based off http://www.doxygen.nl/manual/grouping.html#memgroup)
//@{
/** some documentation here */
int x, y, z;
//@}
or
//@{
/**
* @brief some documentation here
*/
int x, y, z;
//@}
However both of these still only document x. Trying it with different forms I have yet to get the same documentation string to span multiple variables
Been banging my head on this one for a while. Turns out you have to set DISTRIBUTE_GROUP_DOC = YES
in the configuration.