DDoc: possible to show inherited class members?

H. S. Teoh hsteoh at quickfur.ath.cx
Fri Mar 8 17:16:07 PST 2013


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

-- 
Don't drink and derive. Alcohol and algebra don't mix.


More information about the Digitalmars-d mailing list