Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QtCreator -- show a list of member functions of a class?

Irecently just switched to QtCreator for C++ programming.

I am curious, how do I see a list of the member functions/variables of a class on the right hand side of the screen? I think a lot of IDEs (such as Eclipse) provide this feature and it's quite useful for helping to understand new code.

like image 787
CuriousMind Avatar asked Aug 26 '15 03:08

CuriousMind


1 Answers

You can do this by using Sidebar (To see sidebar. Select Window->Show Sidebar)

In Side-bar panel, there is a list option on top-right, select "Class View" and that's it!

enter image description here

like image 129
Arun Avatar answered Sep 20 '22 00:09

Arun