If I have a class:
class Base { public: ///does something virtual void method()=0; }; class Child : public Base { public: virtual void method(); };
What will doxygen do for Child::method ? Reuse basic documents or leave them blank?
Child::method
It depends on the configuration setting of INHERIT_DOCS. When INHERIT_DOCS is set to YES, the documentation will be copied, if it is set to NO, the derived method will remain undocumented.
Source: https://habr.com/ru/post/891718/More articles:The implementation of non-local tools Noise reduction algorithm for image processing - c ++how long, by default, does things stay in httpcache unless I set an explicit expiration? - c #Phrase Detection and Comparison Algorithm - language-agnosticWhen should the save method be called in Django? - pythoniMessage inside your application (iOS5) - ios5Check if port is open in ANT - portPerl searches and replaces the last occurrence of a character - regexLinux channel: capturing ping real-time output via popen - c ++GLSL Geometry shader and general vertex attributes - glslConstellation Hypothesis in Mathematics - wolfram-mathematicaAll Articles