[Doxygen-users] Feature Req: show inherited members w/ class docs
Brought to you by:
dimitri
|
From: Ted D. <The...@jp...> - 2001-12-10 16:50:56
|
I'd like to request an option in the config file to show all inherited
members with a derived class. So given the following:
class Base {
public:
void f();
};
class Derived : public Base {
public:
void g();
};
The docs for Derived would show both f and g. The docs for f() might or
might not appear on the same page as Derived. The important part for me
would by that the listing for Derived (at the top of the doc page) would
include f().
I've spent a few hours trying to make this work by hacking classdef.cpp so
that when the inherited elements are merged into the derived classes. I
couldn't get it to work, but I haven't spent that much time inside doxygen.
Would anyone else like this option?
Ted
Ted Drain Jet Propulsion Laboratory ted...@jp...
|