Thread overview
Doxygen
Oct 04, 2003
Sjoerd van Leent
Oct 04, 2003
Andy Friesen
Oct 04, 2003
Ant
October 04, 2003
Does anyone of you have a doxygen configuration setup for D?

Thanks in advance,
Sjoerd van Leent


October 04, 2003
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

October 04, 2003
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