Doxygen is not adding any documentation to any of my members functions in this class:
#ifndef SET_H_ #define SET_H_ / ** @file * / ** ** set a mathematical set * / square {virtual set}; / ** * The limit of this set * @ Layers Whether this set is a calculable or not * / virtual bullet (); ...} #endif / * SET_H_ * /
This class makes the document just fine, but the function is not documented, even if I have to type EXTRACT_ALL
Set in Do you know why this happens?
Otherwise unless is declared publicly
or < Code> protected .
By default, Doxygen does not include personal actions, even if the EXTRACT_ALL
setting is correct. You can include them by adding Doxyfile EXTRACT_PRIVATE = YES
. Quoted from
:
Is your class / file / name document document? If not, then it will not be removed from sources, unless EXTRACT_ALL is set to Yes in the config file.
Are the members private? If so, you have to set EXTRACT_PRIVATE in yes to appear in the document.
No comments:
Post a Comment