I have an enum that is straightforward and does not require to have each member documented. I'd still like all members in the documentation so people can see the possible values.
Is there a way to make doxygen to extract all members of enums without setting it to EXTRACT_ALL?
Enum in Question:
/// \brief This enum holds all normal and special keys
enum Key
{
KEY_A = 'A',
KEY_B = 'B',
// etc
};