Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse CDT - show inherited members in derived class?

is it possible in Eclipse CDT that the outline or even the code windows displays inherited members of a class? So that I have a full overview of the derived class functionality.

class Derived : public Base {}

If I'm in Derived.cpp/h I want to see the inherited members from Base.cpp/h in the outline (or somewhere else, maybe greyed out directly in the code window).

Having it in the auto-complete list is nice, but having also a full overview would be better.

Is this somehow possible?

like image 484
blubberbernd Avatar asked Nov 13 '22 17:11

blubberbernd


1 Answers

  • F4 for full hierarchy view related to a class.
  • Ctrl+T shows implementations for a selected member function.
like image 171
Sergei Krivonos Avatar answered Dec 21 '22 04:12

Sergei Krivonos