Thread overview
Ddoc Questions
February 11, 2006
1.
Is there a way to make ddoc generate something
for files/classes that aren't commented (yet) ?

(since I just got blank files)

2.
Also, is there a flag or a way to make it just
generate the documentation and not any objects ?

(got link errors, for docs...)

--anders

PS. Used to javadoc, you see.
February 11, 2006
Anders F Björklund wrote:
> 1.
> Is there a way to make ddoc generate something
> for files/classes that aren't commented (yet) ?

I'm putting /***/ before every method for witch I don't have docs yet.


> 2.
> Also, is there a flag or a way to make it just
> generate the documentation and not any objects ?

-o-
    suppress generation of object file

http://digitalmars.com/d/dcompiler.html
February 11, 2006
Julio César Carrascal Urquijo wrote:

>> 1.
>> Is there a way to make ddoc generate something
>> for files/classes that aren't commented (yet) ?
> 
> I'm putting /***/ before every method for witch I don't have docs yet.

This is not really doable, so I'll just use Doxygen
(at least until it has been been properly commented)

>> 2.
>> Also, is there a flag or a way to make it just
>> generate the documentation and not any objects ?
> 
> -o-
>     suppress generation of object file
> 
> http://digitalmars.com/d/dcompiler.html

Thanks! (will add -o- to the "ddoc" target)
Also reminds me to update the man pages... :-)

--anders