Dependancy between methods of a class
-
Hi All, Can anyone suggest me a tool that will display the dependancy between methods of a class. That is, which method calls which other method of the class.
Thanks in advance, Murali
Isn't there something on the standard right click menu which does that, for the method selected ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Hi All, Can anyone suggest me a tool that will display the dependancy between methods of a class. That is, which method calls which other method of the class.
Thanks in advance, Murali
I think Visual Studio has something called an Outline that will show all that. Not sure, I am almost sure there is something built into Visual Studio though.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
-
Isn't there something on the standard right click menu which does that, for the method selected ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Hi Chris, U r right.. We can view the references of the methods on right click of them. However I am in need of a tool that will take a class as input and give me the interdependancy of methods as the output. Could u please suggest me on that?
Thanks in advance, Murali
-
Hi Chris, U r right.. We can view the references of the methods on right click of them. However I am in need of a tool that will take a class as input and give me the interdependancy of methods as the output. Could u please suggest me on that?
Thanks in advance, Murali
How about you write a program that does it?
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
-
I think Visual Studio has something called an Outline that will show all that. Not sure, I am almost sure there is something built into Visual Studio though.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
It's the "Find all references" thing.
-
It's the "Find all references" thing.
Yes, that is one way to do it. I remember something that allowed you to see all the things you referenced, and then where all you did so.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo