Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Classview Inherited members

Status
Not open for further replies.

gRegister

Programmer
Joined
Nov 28, 2002
Messages
9
Location
US
How do I get the Classview Tab to show inherited members and member function in VC++ 6.0
 
i wish it were that simple. I have not yet been able to do this and i assume it cant be done. Unless you re-define virtual functions in the child, you will not see the inherited virtual functions :-( You can see them however when you use the . or -> when you have a class object or pointer.

Matt
 
Ok, since we can't do that. Is there some other method to browse the inheritance tree of a derived class.
 
The only way I can think of is

baseClass* pClass;

pClass = CreateDesiredClass(switch_value);

((childClassCast*)pClass)->*** Once you do this a list pops up and you see everything you have access to***

Matt
 
This sis close to what i wanted. In ClassView, select the derived class your interested in, right click and choice Base Classes. A window will appear allowing you to navigate the inheritance tree.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top