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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Callers Graph

Status
Not open for further replies.

eric91850

Programmer
Jul 29, 2007
12
US
How does the "Callers Graph" works in VC++ like the following?


Does the "Callers Graph" means:

either CRemoteDemo::setup () + CSlidermenuItem::Create()

-MAKE CALL- to

CTestGrphicsGroup::Create()

===============

the problem is if I go into CSlidermenuItem::Create() - I dont' seem
to see any calls to

CTestGrphicsGroup::Create()

===============

I used Java Eclispe and the Call Hierarchy show clearly like the
following


Does VC++ 2005 has something similar?
 
Do you mean a stack trace or a caller's graph on a non running system? A caller's graph on a non-running system can be very misleading when you use virtual functions, overriding, template specialization and late binding. I don't know of any system that will give you a call graph on the source code for highly complex programs that use those features.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top