23

Class is documented as follows:

/**
 * @brief   Number representation
 */
class CNumber : public CElem
{
  /** @brief Holds true for negative values */
  bool    neg;
  ...

However, the variable documented in the code doesn't appear in the documentation (class brief shows fine...).

What am I doing wrong?

Opux
  • 702
  • 1
  • 10
  • 30
notnull
  • 1,908
  • 3
  • 19
  • 25

1 Answers1

58

It's private. Make it public or protected and it will show up, or configure Doxygen to show private members by setting the EXTRACT_PRIVATE tag to YES in the configuration file (which is usually "Doxyfile").

Opux
  • 702
  • 1
  • 10
  • 30