DDoc: possible to show inherited class members?

Andrej Mitrovic andrej.mitrovich at gmail.com
Fri Mar 8 17:20:02 PST 2013


On Saturday, 9 March 2013 at 01:18:29 UTC, H. S. Teoh wrote:
> Is there a way for DDoc to generate documentation for inherited 
> class
> members in the documentation for a class?
>
> 	class A {
> 		int x;
> 	}
> 	/// Derived class
> 	class B : A {
> 		/// Another value
> 		int y;
>
> 		// ?? how to also show A.x in B's documentation?
> 	}
>
>
> T

There's an enhancement opened about it[1] and I began 
implementing it a few weeks ago, but I haven't worked on it 
since. It's definitely on my TODO list though.

[1]: http://d.puremagic.com/issues/show_bug.cgi?id=7688


More information about the Digitalmars-d mailing list