tags:

views:

15

answers:

1

Is it possible to document multiple enumeration/variables with the same documentation?

For example:

enum
{
   /// Description of Values
   VALUE_1 = 0,
   VALUE_2 = 1,
   VALUE_3 = 2
};

This results only VALUE_1 getting described by the doxgen description, when in reality, I want all three values to have the same description. The only way to get around this is copy and paste the description for every value.

A: 

Member groups may be what you are looking for.

Dima
Thanks, but it sorta of works. However, it gives me a good place to start.
Dennis Miller