There are some tools like DoxyGen, that will give partial cross references; but so far I have found all of them lacking. For example, one key area of focus for this effort is all the places where objects are created, copied (and moved), destructed.
Consider:
Now imagine rthere are hundreds of placess where class ImplicitConstructor is created, passed by value (aka copied).... And that there are hundreds of classes to analyze...
NOTE: I am looking for something that produces an OUTPUT, not something individually interactive in a GUI...
TIA!
Consider:
Code:
class ImplicitConstructor
{
public:
void AFunction();
};Code:
class TestBed1
{
public:
void Test1()
{
ImplicitConstructor instance;
}
};NOTE: I am looking for something that produces an OUTPUT, not something individually interactive in a GUI...
TIA!