www.digitalmars.com         C & C++   DMDScript  

D - Doxygen

reply Sjoerd van Leent <Sjoerd_member pathlink.com> writes:
Does anyone of you have a doxygen configuration setup for D?

Thanks in advance,
Sjoerd van Leent
Oct 04 2003
parent reply Andy Friesen <andy ikagames.com> writes:
Sjoerd van Leent wrote:
 Does anyone of you have a doxygen configuration setup for D?
 
 Thanks in advance,
 Sjoerd van Leent
Burton Radons uses doxygen to generate the dig documentation. He just uses D comments around C preprocessor directives so that doxygen doesn't process any code it wouldn't understand. /+ #ifdef DOXYGEN_SHOULD_IGNORE_THIS_BIT +/ // Stuff that doxygen should skip goes here /+ #endif +/ A bit ugly, but effective. -- andy
Oct 04 2003
parent Ant <Ant_member pathlink.com> writes:
In article <blnama$1dvd$1 digitaldaemon.com>, Andy Friesen says...
Sjoerd van Leent wrote:
 Does anyone of you have a doxygen configuration setup for D?
 
 Thanks in advance,
 Sjoerd van Leent
Burton Radons uses doxygen to generate the dig documentation. He just uses D comments around C preprocessor directives so that doxygen doesn't process any code it wouldn't understand. /+ #ifdef DOXYGEN_SHOULD_IGNORE_THIS_BIT +/ // Stuff that doxygen should skip goes here /+ #endif +/ A bit ugly, but effective. -- andy
but there is more than that I have problems with interfaces and enums (not being included at all) (I must say I read the least possible of the doxygen codumentation) Ant
Oct 04 2003