ddoc and method overriding.

Alexandru Ermicioi via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sat Aug 12 03:54:14 PDT 2017


Hi all,

Having a trivial example such as:

```D
class Foo {
     /**
      * A documentation info
     **/
     void fancy();
}

class Moo {
     override void fancy();
}
```

Is there a way to tell ddoc to use Foo.fancy documentation block 
for overriding Moo.fancy method?

Thx.


More information about the Digitalmars-d-learn mailing list