Is it possible in Eclipse CDT that inherited class members are displayed in a loop or even in code windows? So I have a complete overview of the functionality of a derived class.
class Derived : public Base {}
If I'm in Derived.cpp / h, I want to see the inherited elements from Base.cpp / h in the outline (or somewhere else, maybe greyed right in the code window).
Being on the autocomplete list is nice, but a better review will also be better.
How is this possible?
source share