Doxygen is not adding the documentation of any of my member functions in this class:
#ifndef SET_H_ #define SET_H_ /** @file */ /** * A mathematical set */ class Set { virtual ~Set(); /** * The countability of this set * @returns Whether this set is a countable one or not. */ virtual bool isCountable(); ... } #endif /* SET_H_ */ It produces the class documentation just fine, but not the function documentation even if I set EXTRACT_ALL to YES. Do you know why this is the case?