Eclipse CDT - show inherited members in a derived class?

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?

+4
source share
1 answer
  • F4 for a complete view of a class hierarchy.
  • Ctrl + T shows the implementations for the selected member function.
+1
source

All Articles